aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/makefile b/makefile
index 9ed6711..c389148 100644
--- a/makefile
+++ b/makefile
@@ -1,3 +1,4 @@
+.PHONY: all clean plugins
PLUGINPATH=plugins/
CFLAGS=-g -Wall -Wpedantic -DPLUGINS=\"$(PLUGINPATH)\"
@@ -7,7 +8,10 @@ OBJECTS=builtins.o network.o websocket.o plugin.o
all: websocksy
-websocksy: websocksy.c websocksy.h $(OBJECTS)
+plugins:
+ $(MAKE) -C plugins
+
+websocksy: websocksy.c websocksy.h $(OBJECTS) plugins
$(CC) $(CFLAGS) $(LDLIBS) $< -o $@ $(OBJECTS)
clean: