summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 18113c9..a4f0315 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,10 @@ client: src/client.c
logger: src/logger.c src/utils.c
$(CC) $^ -o $@
+start: publisher client
+ $(error "Not yet implemented")
+
clean:
rm -f logger client publisher
-.PHONY: clean publisher client logger
+.PHONY: clean publisher client logger start