From d90d0050c2ee91d11fce3a5fd45c5fb64018392c Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 15 Aug 2020 02:06:51 +0200 Subject: Split http into request and response headers --- Makefile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.1