summaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 3966232e30892a12c10432b20272a3e27a05fc7f (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
CFLAGS+=-Wall -Wextra -Wpedantic
CFLAGS+=-I/usr/include/lua5.3
LDLIBS+=-llua5.3
PREFIX?=/usr/local

plop: plop.o http.o
plop.o http.o: 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