]> code.delx.au - spectrwm/blobdiff - Makefile
Fix man errors
[spectrwm] / Makefile
index 02570ea853e94845fe07c38f644fe82a5653a483..94955eb079c076f795420c905127a576e57a77c7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,3 @@
-# $scrotwm$
 .include <bsd.xconf.mk>
 
 PREFIX?=/usr/local
@@ -6,16 +5,28 @@ PREFIX?=/usr/local
 BINDIR=${PREFIX}/bin
 SUBDIR= lib
 
-PROG=scrotwm
-MAN=scrotwm.1 scrotwm_es.1 scrotwm_it.1
+PROG=spectrwm
+MAN=spectrwm.1
 
-CFLAGS+=-std=c89 -Wall -Wno-uninitialized -ggdb3
-CPPFLAGS+= -I${X11BASE}/include
-LDADD+=-lutil -L${X11BASE}/lib -lX11 -lXrandr
+CFLAGS+=-std=c99 -Wmissing-prototypes -Wall -Wextra -Wshadow -Wno-uninitialized -g
+# Uncomment define below to disallow user settable clock format string
+#CFLAGS+=-DSWM_DENY_CLOCK_FORMAT
+CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2
+LDADD+=-lutil -L${X11BASE}/lib -lX11 -lX11-xcb -lxcb-util -lxcb-icccm -lxcb-keysyms -lxcb-randr -lxcb-xtest -lXft -lXcursor
+BUILDVERSION != sh "${.CURDIR}/buildver.sh"
+.if !${BUILDVERSION} == ""
+CPPFLAGS+= -DSPECTRWM_BUILDSTR=\"$(BUILDVERSION)\"
+.endif
 
-MANDIR= ${PREFIX}/man/cat
+MANDIR= ${PREFIX}/man/man
 
 obj: _xenocara_obj
 
+beforeinstall:
+       ln -sf ${PROG} ${BINDIR}/scrotwm
+
+spectrwm.html: spectrwm.1
+       mandoc -Thtml ${.CURDIR}/spectrwm.1 > spectrwm.html
+
 .include <bsd.prog.mk>
 .include <bsd.xorg.mk>