summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2023-07-14 18:28:02 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2023-07-14 18:28:02 +0200
commitd89f9840a5f97be75a2a4cecbd64fb6c4bd7e9f3 (patch)
treee761080edc35389f847fc514de73bed134424d6c /Makefile
parent4f9aced0c34d9554fc61f5072d8536133455b941 (diff)
Minor changes
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