summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-08-14 12:21:21 -0400
committerJune McEnroe <june@causal.agency>2020-08-14 16:00:35 -0400
commitb8ad6a4dbb46ac26a1cc333466f9ed96b00f1502 (patch)
treea3c439e571b2d64cf03eb0efdacc824325d04b77 /Makefile
parentAdd spawnd skeleton (diff)
downloadcatsit-b8ad6a4dbb46ac26a1cc333466f9ed96b00f1502.tar.gz
catsit-b8ad6a4dbb46ac26a1cc333466f9ed96b00f1502.zip
Add install target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile26
1 files changed, 24 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 46ab385..a8ca227 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,20 @@
+PREFIX ?= /usr/local
+MANDIR ?= ${PREFIX}/share/man
+ETCDIR ?= ${PREFIX}/etc
+RUNDIR ?= /var/run
+
 CFLAGS += -std=c99 -Wall -Wextra -Wpedantic
+CFLAGS += -D'ETCDIR="${ETCDIR}"' -D'RUNDIR="${RUNDIR}"'
 
 -include config.mk
 
+BINS = spawn spawnd
+MAN8 = ${BINS:=.8}
+MAN5 = spawntab.5
+
 OBJS += daemon.o
 
-all: spawn spawnd
+all: ${BINS}
 
 spawnd: ${OBJS}
 	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@
@@ -12,4 +22,16 @@ spawnd: ${OBJS}
 ${OBJS}: daemon.h
 
 clean:
-	rm -f spawn spawnd ${OBJS}
+	rm -f ${BINS} ${OBJS}
+
+install: ${BINS} ${MAN5} ${MAN8}
+	install -d ${DESTDIR}${PREFIX}/sbin
+	install -d ${DESTDIR}${MANDIR}/man5 ${DESTDIR}${MANDIR}/man8
+	install ${BINS} ${DESTDIR}${PREFIX}/sbin
+	install -m 644 ${MAN5} ${DESTDIR}${MANDIR}/man5
+	install -m 644 ${MAN8} ${DESTDIR}${MANDIR}/man8
+
+uninstall:
+	rm -f ${BINS:%=${DESTDIR}${PREFIX}/sbin/%}
+	rm -f ${MAN5:%=${DESTDIR}${MANDIR}/man5/%}
+	rm -f ${MAN8:%=${DESTDIR}${MANDIR}/man8/%}
ll missing putting the URL in an X selection. 2021-02-07Enable mouse acceleration in XJune McEnroe 2021-02-07Set colours for Xt and cwmJune McEnroe And increase XTerm internalBorder. 2021-02-07Set urgency on bell in xtermJune McEnroe 2021-02-07Add bindings for brightness controlJune McEnroe Weirdly the Fn key doesn't change how the F row registers... I wonder if I can do something about that. 2021-02-07Set X key repeat rateJune McEnroe 2021-02-07Bump font size to 12June McEnroe 11 is what I use on macOS, but I feel like my eyes are working harder here. 2021-02-07Fully configure and rebind cwmJune McEnroe This is sort of a mix of trying to emulate macOS somewhat for my muscle memory and just rebinding some of the cwm defaults to use 4- rather than M-. 2021-02-07Add BintiJune McEnroe 2021-02-07Finish configuring xtermJune McEnroe 2021-02-06Enable tapping, reverse scroll, set scaling in wsconsctlJune McEnroe 2021-02-06Set root window to black on purple snowJune McEnroe 2021-02-06Add xmodmap configurationJune McEnroe 2021-02-06Add initial OpenBSD X configurationJune McEnroe cwm still needs a lot more rebinding, and I need to actually look at its other options. xterm definitely still needs some configuration, but I at least managed to get it to use a decent looking font. Very happy that OpenBSD includes Luxi Mono, which is what my usual font, Go Mono, is based on anyway. Still missing is xmodmap and such. 2021-02-06Add xterm output to schemeJune McEnroe