From 0aae05ac4a32c19ea14b512e4ea2ee339d5b096d Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 9 Jul 2020 16:44:39 -0400 Subject: Add configure script and install target --- Makefile | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ce4cdcf..94ca089 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,20 @@ +PREFIX ?= ~/.local +MANDIR ?= ${PREFIX}/share/man + CFLAGS += -std=c11 -Wall -Wextra -Wpedantic -LDLIBS = -lsqlite3 -lkcgi -lkcgihtml -lz +LDLIBS = -lkcgi -lkcgihtml -lsqlite3 + +-include config.mk scooper: + +clean: + rm -f scooper + +install: scooper scooper.1 + install -d ${PREFIX}/bin ${MANDIR}/man1 + install scooper ${PREFIX}/bin + install -m 644 scooper.1 ${MANDIR}/man1 + +uninstall: + rm -f ${PREFIX}/bin/scooper ${MANDIR}/man1/scooper.1 -- cgit 1.4.1