diff options
author | Aki <please@ignore.pl> | 2020-07-07 17:47:21 +0200 |
---|---|---|
committer | Aki <please@ignore.pl> | 2020-07-07 17:47:21 +0200 |
commit | f6aa26cb6489338c66c07cea14f2892eec88cb01 (patch) | |
tree | adc2b975bc3c0399a69850c113a5b37dc6f6357d /Makefile | |
parent | ebf5def64dbb2474e9105a4fbdd9b875c023d3e5 (diff) | |
download | plop-f6aa26cb6489338c66c07cea14f2892eec88cb01.zip plop-f6aa26cb6489338c66c07cea14f2892eec88cb01.tar.gz plop-f6aa26cb6489338c66c07cea14f2892eec88cb01.tar.bz2 |
Preparations to completely separate execution-related from plop itself
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,8 +3,9 @@ CFLAGS+=-I/usr/include/lua5.3 LDLIBS+=-llua5.3 PREFIX?=/usr/local -plop: plop.o http.o -plop.o http.o: http.h +plop: main.o plop.o http.o +main.o plop.o: plop.h +main.o plop.o http.o: http.h clean: rm -f plop *.o |