From 02376d895d6dbe9caf6afd2c18bb817e9197a033 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Tue, 14 Jul 2020 15:29:09 +0000 Subject: Add CGI upload program for temp.causal.agency --- www/temp.causal.agency/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 www/temp.causal.agency/Makefile (limited to 'www/temp.causal.agency/Makefile') 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 -- cgit 1.4.1