From 06c8cf3b1e0c2a6d9057a1ebe8e2d566b4f3196a Mon Sep 17 00:00:00 2001 From: Jordan Date: Thu, 30 Dec 2021 16:25:13 -0700 Subject: initial commit --- tracker.jordan.im/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tracker.jordan.im/Makefile (limited to 'tracker.jordan.im/Makefile') diff --git a/tracker.jordan.im/Makefile b/tracker.jordan.im/Makefile new file mode 100644 index 0000000..8ebf663 --- /dev/null +++ b/tracker.jordan.im/Makefile @@ -0,0 +1,14 @@ +WEBROOT = /var/www/html/tracker.jordan.im + +FILES = index.html style.css + +all: ${FILES} + +index.html: index.7 + mandoc -T html -O style=style.css index.7 > index.html + +install: ${FILES} + install -c -m 644 ${FILES} ${WEBROOT} + +clean: + rm -f index.html -- cgit v1.2.3-54-g00ecf