From 8cb2c53d2d01c13761627231e3d182002e3742d5 Mon Sep 17 00:00:00 2001 From: Linux User Date: Sat, 24 Jun 2023 00:13:26 +0000 Subject: 0x7c0, misc updates --- 0x7c0.com/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 0x7c0.com/Makefile (limited to '0x7c0.com/Makefile') diff --git a/0x7c0.com/Makefile b/0x7c0.com/Makefile new file mode 100644 index 0000000..e5f0645 --- /dev/null +++ b/0x7c0.com/Makefile @@ -0,0 +1,14 @@ +WEBROOT = /var/www/0x7c0.com + +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