diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-02-13 21:03:16 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-02-13 21:03:30 +0100 |
commit | 48878e16cb3b5c70e6dae1364e35ee0c4e941814 (patch) | |
tree | d097521f31a199741062c57562b7b8014fc96967 /sharpd | |
parent | Merge pull request #3622 from mjstapp/fix_cpp_compile (diff) | |
download | frr-48878e16cb3b5c70e6dae1364e35ee0c4e941814.tar.xz frr-48878e16cb3b5c70e6dae1364e35ee0c4e941814.zip |
build: non-recursive sharpd
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'sharpd')
-rw-r--r-- | sharpd/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sharpd/Makefile b/sharpd/Makefile new file mode 100644 index 000000000..6a904d1a6 --- /dev/null +++ b/sharpd/Makefile @@ -0,0 +1,10 @@ +all: ALWAYS + @$(MAKE) -s -C .. sharpd/sharpd +%: ALWAYS + @$(MAKE) -s -C .. sharpd/$@ + +Makefile: + #nothing +ALWAYS: +.PHONY: ALWAYS makefiles +.SUFFIXES: |