summary refs log tree commit diff
path: root/www/temp.causal.agency/Makefile
blob: 3e908305e1c76d34ce6cf3f707776fc4c7c91e09 (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 -m 700 up ${WEBROOT}/up

uninstall:
	rm -f ${WEBROOT}/up
d>June McEnroe 2020-07-18Reverse order of X macro parameters for pages and keysJune McEnroe 2020-07-18Remove kcgi 0.11 compatibilityJune McEnroe 2020-07-17Filter networks with only private contextsJune McEnroe 2020-07-17Add export optionJune McEnroe 2020-07-17Add margin to inputsJune McEnroe 2020-07-16Don't write null terminator in stylesheet responseJune McEnroe 2020-07-16Remove sudo from make installJune McEnroe