summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-07-09 16:44:39 -0400
committerJune McEnroe <june@causal.agency>2020-07-09 16:44:39 -0400
commit0aae05ac4a32c19ea14b512e4ea2ee339d5b096d (patch)
treed0d788b90ce6cda06bc2b63d20866e6dabe7acf4 /Makefile
parentAdd compatibility for kcgi <0.12 (diff)
downloadscooper-0aae05ac4a32c19ea14b512e4ea2ee339d5b096d.tar.gz
scooper-0aae05ac4a32c19ea14b512e4ea2ee339d5b096d.zip
Add configure script and install target
Diffstat (limited to '')
-rw-r--r--Makefile18
1 files changed, 17 insertions, 1 deletions
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
roe This should prevent bad wrapping. 2019-05-26Add DawnJune McEnroe 2019-05-20Declare vasprintf(3) for GNUJune McEnroe who the fuck is scraeming "#define _GNU_SOURCE" at my house. show yourself, coward. i will never #define _GNU_SOURCE 2019-05-20Fix comparison warning in ttpreJune McEnroe 2019-05-20Add AuthorityJune McEnroe 2019-05-19Specify precedence of unary versions of operatorsJune McEnroe 2019-05-18Add compound assignment operators to orderJune McEnroe 2019-05-15Support simple assignment in orderJune McEnroe 2019-05-15Implement sizeof in orderJune McEnroe 2019-05-15Add orderJune McEnroe 2019-05-12Add T suffix in bitJune McEnroe 2019-05-10Highlight yacc and lex files as CJune McEnroe Their %-prefixed directives should probably be highlighted Macro. 2019-05-10Use val instead of suboptargJune McEnroe suboptarg doesn't exist in GNU. Hopefully BSD getsubopt also sets val on failure? 2019-05-09Add Parable of the SowerJune McEnroe 2019-05-07Add bit without buildJune McEnroe Need to do some stuff in the Makefile for lex and yacc and generating HTML pages for it. 2019-05-04Fix MANDIR typoJune McEnroe 2019-05-04Move relay to binJune McEnroe