diff options
author | June McEnroe <june@causal.agency> | 2021-09-25 22:20:01 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-09-25 22:20:01 -0400 |
commit | ed3e282befed9ba193f90190ea90fc7b1bb503c9 (patch) | |
tree | 2198a71f92b3db0b59ee16cd3c922214982c6b58 /www/temp.causal.agency | |
parent | Clean up up (ugh) somewhat again (diff) | |
download | src-ed3e282befed9ba193f90190ea90fc7b1bb503c9.tar.gz src-ed3e282befed9ba193f90190ea90fc7b1bb503c9.zip |
Install up to cgi-bin
Diffstat (limited to '')
-rw-r--r-- | www/temp.causal.agency/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/temp.causal.agency/Makefile b/www/temp.causal.agency/Makefile index cdcfb644..a69a2b48 100644 --- a/www/temp.causal.agency/Makefile +++ b/www/temp.causal.agency/Makefile @@ -1,4 +1,4 @@ -WEBROOT = /usr/local/www/temp.causal.agency +CGI_BIN = /var/www/cgi-bin CFLAGS += -std=c11 -Wall -Wextra -Wpedantic $$(pkg-config --cflags kcgi) LDLIBS = -static $$(pkg-config --static --libs kcgi-html) @@ -9,7 +9,7 @@ clean: rm -f up install: up - install -m 700 up ${WEBROOT}/up + install up ${CGI_BIN}/up uninstall: - rm -f ${WEBROOT}/up + rm -f ${CGI_BIN}/up |