diff options
author | David Lamparter <equinox@diac24.net> | 2018-08-15 23:35:51 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2018-09-08 21:25:59 +0200 |
commit | 84d837b75d3dc3e4640dd311fcb22bfa62065f34 (patch) | |
tree | af01c1931ace11ec9db17785744543ac85a79873 /bgpd/Makefile | |
parent | Merge pull request #2875 from opensourcerouting/fabricd (diff) | |
download | frr-84d837b75d3dc3e4640dd311fcb22bfa62065f34.tar.xz frr-84d837b75d3dc3e4640dd311fcb22bfa62065f34.zip |
build: non-recursive bgpd & rfp
Note: no more --with-rfp-path on configure - badly messing with the
build system like this really isn't how to do a conditional external
dependency.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'bgpd/Makefile')
-rw-r--r-- | bgpd/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bgpd/Makefile b/bgpd/Makefile new file mode 100644 index 000000000..b8664a8e2 --- /dev/null +++ b/bgpd/Makefile @@ -0,0 +1,10 @@ +all: ALWAYS + @$(MAKE) -s -C .. bgpd/bgpd +%: ALWAYS + @$(MAKE) -s -C .. bgpd/$@ + +Makefile: + #nothing +ALWAYS: +.PHONY: ALWAYS makefiles +.SUFFIXES: |