summaryrefslogtreecommitdiff
path: root/client/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'client/Makefile')
-rw-r--r--client/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/client/Makefile b/client/Makefile
index 3568833e..8c2f91e0 100644
--- a/client/Makefile
+++ b/client/Makefile
@@ -1,5 +1,11 @@
-source=commands.c util.c client_common.c
+source=commands.c util.c common.c
root-rel=../
dir-name=client
+clients := $(client) birdcl
+
+source-dep := $(source) $(addsuffix .c,$(clients))
+
+subdir: $(addsuffix .o,$(clients))
+
include ../Rules