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 'Makefile')
-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
span title='2022-06-25 17:39:13 -0400'>2022-06-25Bump xterm font size to 12June McEnroe 2022-06-10Handle subshells (and functions) inside substitutionsJune McEnroe 2022-06-10Switch to jorts Install scriptJune McEnroe 2022-06-08Indicate if still reading or no resultsJune McEnroe 2022-06-08Add Maiden, Mother, CroneJune McEnroe 2022-06-05FIRST SHOW IN 2.5 YEARS BABEY!!!June McEnroe 2022-06-03Set line number on File linesJune McEnroe 2022-06-03Stop polling stdin after EOFJune McEnroe 2022-06-02Set TABSIZE=4June McEnroe 2022-06-02Do basic match highlightingJune McEnroe 2022-06-02Clean up parsing a littleJune McEnroe 2022-06-02Don't duplicate path stringJune McEnroe 2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe 2022-06-02Add initial working version of qfJune McEnroe 2022-05-29Set prompt for okshJune McEnroe