diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2017-07-22 19:01:46 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-07-31 23:03:30 +0200 |
commit | 64d44794fe8f17c0da6d73329600d12b45d740e5 (patch) | |
tree | 05285a753b6c933d459411f1278a82ffccbf7a48 /zebra/Makefile | |
parent | build: convert lib/ to non-recursive build (diff) | |
download | frr-64d44794fe8f17c0da6d73329600d12b45d740e5.tar.xz frr-64d44794fe8f17c0da6d73329600d12b45d740e5.zip |
build: convert zebra/ to non-recursive build
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra/Makefile')
-rw-r--r-- | zebra/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/zebra/Makefile b/zebra/Makefile new file mode 100644 index 000000000..625a7168e --- /dev/null +++ b/zebra/Makefile @@ -0,0 +1,10 @@ +all: ALWAYS + @$(MAKE) -s -C .. zebra/zebra +%: ALWAYS + @$(MAKE) -s -C .. zebra/$@ + +Makefile: + #nothing +ALWAYS: +.PHONY: ALWAYS makefiles +.SUFFIXES: |