diff options
author | June McEnroe <june@causal.agency> | 2020-07-14 15:29:09 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-14 15:29:09 +0000 |
commit | 02376d895d6dbe9caf6afd2c18bb817e9197a033 (patch) | |
tree | 961b36c134c2d531e6c05086c7c36550115ff2b8 /www/temp.causal.agency/Makefile | |
parent | Add The Broken Kingdoms (diff) | |
download | src-02376d895d6dbe9caf6afd2c18bb817e9197a033.tar.gz src-02376d895d6dbe9caf6afd2c18bb817e9197a033.zip |
Add CGI upload program for temp.causal.agency
Diffstat (limited to '')
-rw-r--r-- | www/temp.causal.agency/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/www/temp.causal.agency/Makefile b/www/temp.causal.agency/Makefile new file mode 100644 index 00000000..3f608286 --- /dev/null +++ b/www/temp.causal.agency/Makefile @@ -0,0 +1,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 |