From d650f4872706bda1bc2921b032d6fce5a3348899 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 17 Jul 2019 20:35:23 -0400 Subject: add makefile --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dc379d9 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +.POSIX: + +CFLAGS=-static + +all: blog + +install: blog + strip blog + doas cp -f blog /var/www/cgi-bin/blog + +clean: + rm -f *.o blog -- cgit v1.2.1