diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-02-14 05:23:06 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-02-14 05:23:48 +0100 |
commit | 6038fe458461ad76a6809995d6ad9ea1d0b59bbd (patch) | |
tree | 8ac2c13e9c1f1c67de78033b4941ae68fbabb61f /bfdd | |
parent | Merge pull request #3794 from donaldsharp/sharp_import_check (diff) | |
download | frr-6038fe458461ad76a6809995d6ad9ea1d0b59bbd.tar.xz frr-6038fe458461ad76a6809995d6ad9ea1d0b59bbd.zip |
bfdd: Add some code so we can compile from w/ in the bfdd dir
Copy pattern of Makefile from other daemons to allow us to
compile this thingie(tm) from within the bfdd directory.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'bfdd')
-rw-r--r-- | bfdd/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bfdd/Makefile b/bfdd/Makefile new file mode 100644 index 000000000..dfe78232c --- /dev/null +++ b/bfdd/Makefile @@ -0,0 +1,10 @@ +all: ALWAYS + @$(MAKE) -s -C .. bfdd/bfdd +%: ALWAYS + @$(MAKE) -s -C .. bfdd/$@ + +Makefile: + #nothing +ALWAYS: +.PHONY: ALWAYS makefiles +.SUFFIXES: |