X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=Makefile;h=a40966943c9dd4a7d1fc3f6800d9575ce72df36b;hb=f9609966f0d40cccd8e67ce5d871f1eab55b676a;hp=9e2e5f1ba1a7a6fe8818ed0162ded831a0b4afd4;hpb=b7645f9cc25a1de433f9adb4cacbce505f550e3c;p=spectrwm.git diff --git a/Makefile b/Makefile index 9e2e5f1..a409669 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,3 @@ -# $scrotwm$ .include PREFIX?=/usr/local @@ -6,22 +5,43 @@ PREFIX?=/usr/local BINDIR=${PREFIX}/bin SUBDIR= lib -PROG=scrotwm -#MAN=scrotwm_pt.1 scrotwm_ru.1 -MAN=scrotwm.1 scrotwm_es.1 scrotwm_it.1 +PROG=spectrwm +#MAN=spectrwm_pt.1 spectrwm_ru.1 spectrwm_es.1 spectrwm_it.1 +MAN=spectrwm.1 -CFLAGS+=-std=c89 -Wall -Wno-uninitialized -ggdb3 +CFLAGS+=-std=gnu89 -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 -LDADD+=-lutil -L${X11BASE}/lib -lX11 -lXrandr -lXtst +CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2 +LDADD+=-lutil -L${X11BASE}/lib -lX11 -lX11-xcb -lxcb-aux -lxcb-icccm -lxcb-keysyms -lxcb-randr -lxcb-xtest -lXft +BUILDVERSION != sh "${.CURDIR}/buildver.sh" +.if !${BUILDVERSION} == "" +CPPFLAGS+= -DSPECTRWM_BUILDSTR=\"$(BUILDVERSION)\" +.endif MANDIR= ${PREFIX}/man/man -#scrotwm_ru.cat1: scrotwm_ru.1 -# nroff -mandoc ${.CURDIR}/scrotwm_ru.1 > ${.TARGET} +#spectrwm_ru.cat1: spectrwm_ru.1 +# nroff -mandoc ${.CURDIR}/spectrwm_ru.1 > ${.TARGET} obj: _xenocara_obj +beforeinstall: + ln -sf ${BINDIR}/${PROG} ${BINDIR}/scrotwm + +# clang targets +.if ${.TARGETS:M*analyze*} +CC=clang +CXX=clang++ +CPP=clang -E +CFLAGS+=--analyze +.elif ${.TARGETS:M*clang*} +CC=clang +CXX=clang++ +CPP=clang -E +.endif + +analyze: all +clang: all .include .include