From 431873bf0a48d830f495083ef0e69967347aa943 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 14 Jan 2021 20:40:07 +0000 Subject: Add igp gopher server for text.causal.agency --- www/text.causal.agency/Makefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'www/text.causal.agency/Makefile') diff --git a/www/text.causal.agency/Makefile b/www/text.causal.agency/Makefile index 380af0fd..223c4e2f 100644 --- a/www/text.causal.agency/Makefile +++ b/www/text.causal.agency/Makefile @@ -1,4 +1,7 @@ -WEBROOT = /usr/local/www/text.causal.agency +WEBROOT ?= /usr/local/www/text.causal.agency +LIBEXEC ?= /usr/local/libexec + +CFLAGS += -Wall -Wextra TXTS += 001-make.txt TXTS += 002-writing-mdoc.txt @@ -26,7 +29,11 @@ feed.atom: feed.sh ${TXTS} sh feed.sh > feed.atom clean: - rm -f ${TXTS} feed.atom + rm -f ${TXTS} feed.atom igp install: ${TXTS} feed.atom install -p -m 644 ${TXTS} feed.atom ${WEBROOT} + +install-igp: igp + install igp ${LIBEXEC} + install -p -m 644 igp.c ${WEBROOT} -- cgit 1.4.1