summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 17610ca..755c091 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,18 @@
CC="gcc"
-all: publisher
+all: publisher client
publisher:
echo "Building publisher..."
$(MAKE) -C src/publisher/ CC=$(CC) OUT=$(PWD)
+client:
+ echo "Building client..."
+ $(MAKE) -C src/client/ CC=$(CC) OUT=$(PWD)
+
+
clean:
$(MAKE) clean -C src/publisher/ CC=$(CC) OUT=$(PWD)
+ $(MAKE) clean -C src/client/ CC=$(CC) OUT=$(PWD)
.PHONY: clean