summaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 3aaef4af9d956fc08c8bbfabb913ce0e73c8d9ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
CFLAGS+=-std=c11 -Wall -Wextra -Wpedantic -D_POSIX_C_SOURCE=200809L
CFLAGS+=-I/usr/include/lua5.3
LDLIBS+=-llua5.3
PREFIX?=/usr/local

plop: main.o plop.o http.o response.o request.o

http.o: http.h
main.o: plop.h http.h request.h
plop.o: http.h plop.h request.h response.h
request.o: http.h request.h
response.o: response.h http.h

clean:
	rm -f plop *.o

install: plop
	mkdir -p $(PREFIX)/bin
	mkdir -p $(PREFIX)/share/man/man1
	cp -f plop $(PREFIX)/bin
	cp -f plop.1 $(PREFIX)/share/man/man1
	chmod 755 $(PREFIX)/bin/plop
	chmod 644 $(PREFIX)/share/man/man1/plop.1

uninstall:
	rm -f $(PREFIX)/bin/plop
	rm -f $(PREFIX)/share/man/man1/plop.1

.PHONY: clean install uninstall