blob: 3f60828659609b17e9a176f8126f5ad33a357160 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
WEBROOT = /usr/local/www/temp.causal.agency
CFLAGS += -std=c11 -Wall -Wextra -Wpedantic -I/usr/local/include
LDFLAGS += -static -L/usr/local/lib
LDLIBS = -lkcgihtml -lkcgi -lz -lmd
up:
clean:
rm -f up
install: up
install up ${WEBROOT}/up
uninstall:
rm -f ${WEBROOT}/up
|