]> code.delx.au - spectrwm/blob - Makefile
Fixed bug in man page.
[spectrwm] / Makefile
1 .include <bsd.xconf.mk>
2
3 PREFIX?=/usr/local
4
5 BINDIR=${PREFIX}/bin
6 SUBDIR= lib
7
8 PROG=spectrwm
9 #MAN=spectrwm_pt.1 spectrwm_ru.1 spectrwm_es.1 spectrwm_it.1
10 MAN=spectrwm.1
11
12 CFLAGS+=-std=c99 -Wmissing-prototypes -Wall -Wextra -Wshadow -Wno-uninitialized -g
13 # Uncomment define below to disallow user settable clock format string
14 #CFLAGS+=-DSWM_DENY_CLOCK_FORMAT
15 CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2
16 LDADD+=-lutil -L${X11BASE}/lib -lX11 -lX11-xcb -lxcb-aux -lxcb-icccm -lxcb-keysyms -lxcb-randr -lxcb-xtest -lXft -lXcursor
17 BUILDVERSION != sh "${.CURDIR}/buildver.sh"
18 .if !${BUILDVERSION} == ""
19 CPPFLAGS+= -DSPECTRWM_BUILDSTR=\"$(BUILDVERSION)\"
20 .endif
21
22 MANDIR= ${PREFIX}/man/man
23
24 #spectrwm_ru.cat1: spectrwm_ru.1
25 # nroff -mandoc ${.CURDIR}/spectrwm_ru.1 > ${.TARGET}
26
27 obj: _xenocara_obj
28
29 beforeinstall:
30 ln -sf ${PROG} ${BINDIR}/scrotwm
31
32 # clang targets
33 .if ${.TARGETS:M*analyze*}
34 CC=clang
35 CXX=clang++
36 CPP=clang -E
37 CFLAGS+=--analyze
38 .endif
39
40 analyze: all
41 clang: all
42 .include <bsd.prog.mk>
43 .include <bsd.xorg.mk>