summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 8fba5b4..828fc4a 100644
--- a/Makefile
+++ b/Makefile
@@ -3,9 +3,16 @@ CFLAGS+=-I/usr/include/lua5.3
LDLIBS+=-llua5.3
PREFIX?=/usr/local
-plop: main.o plop.o http.o
-main.o plop.o: plop.h
-main.o plop.o http.o: http.h
+plop: main.o plop.o http.o response.o request.o
+
+http.o: http.h
+main.o: plop.h
+plop.o: http.h plop.h request.h response.h
+request.o: http.h request.h
+response.o: response.h
+
+plop.h: http.h request.h
+response.h: http.h
clean:
rm -f plop *.o