From 6038fe458461ad76a6809995d6ad9ea1d0b59bbd Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 13 Feb 2019 23:23:06 -0500 Subject: [PATCH] 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 --- bfdd/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 bfdd/Makefile diff --git a/bfdd/Makefile b/bfdd/Makefile new file mode 100644 index 0000000000..dfe78232c4 --- /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: -- 2.39.5