From b9297647c68c963a977e2c18f421211e24f9e85a Mon Sep 17 00:00:00 2001 From: cbdev Date: Sat, 1 Jun 2019 21:27:52 +0200 Subject: Implement file backend --- makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'makefile') 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: -- cgit v1.2.3