]> code.delx.au - spectrwm/blobdiff - osx/Makefile
-Werror, because we care
[spectrwm] / osx / Makefile
index db7d3d9a0f0d7538a256549375bec20a37ec1e68..d3aa263263760a89fa38052a21b52a79d619141a 100644 (file)
@@ -1,27 +1,36 @@
-# To use homebrew instead of macports, uncomment the following three lines.
+PREFIX?= /usr/local
+BINDIR?= $(PREFIX)/bin
+LIBDIR?= $(PREFIX)/lib
+MANDIR?= $(PREFIX)/share/man
+
+BUILDVERSION    = $(shell sh $(CURDIR)/../buildver.sh)
+
+# To use xquartz, uncomment the following three lines.
+INCFLAGS+= -I/opt/X11/include -I/opt/X11/include/freetype2/
+LDADD+=  -L/opt/X11/lib -lX11 -lXcursor -lXft
+
+# To use homebrew, uncomment the following three lines.
 #INCFLAGS+= -I/opt/X11/include
 #LDADD+=  -lX11 -lXcursor -lXft -L/opt/X11/lib
-#INCFLAGS+= -I/usr/local/Cellar/freetype/2.4.10/include/freetype2
+#INCFLAGS+= -I/usr/local/Cellar/freetype/2.5.0.1/include/freetype2
 
-# To use homebrew instead of macports, comment out the following two lines.
-INCFLAGS+= -I/opt/local/include/freetype2 -I/opt/local/include
-LDADD+=  -L/opt/local/lib -lX11 -lXcursor -lXft
+# To use homebrew , comment out the following two lines.
+#INCFLAGS+= -I/opt/local/include/freetype2 -I/opt/local/include
+#LDADD+=  -L/opt/local/lib -lX11 -lXcursor -lXft
 
 LDADD+=  -lxcb-keysyms -lxcb-util -lxcb-randr -lX11-xcb -lxcb-xtest -lxcb -lxcb-icccm
 
-CFLAGS+= -std=c99 -Wmissing-prototypes -Wall -Wextra -Wshadow -Wno-uninitialized -g
-CFLAGS+= -O2 -D_GNU_SOURCE -D__OSX__ -I. -I.. ${INCFLAGS}
-CFLAGS+= -DSWM_LIB=\"$(LIBDIR)/libswmhack.so.$(LVERS)\"
+LVERS= $(shell . ../lib/shlib_version; echo $$major.$$minor)
 
-PREFIX?= /usr/local
-BINDIR?= $(PREFIX)/bin
-LIBDIR?= $(PREFIX)/lib
-MANDIR?= $(PREFIX)/share/man
+CFLAGS+= -std=c99 -Wmissing-prototypes -Werror -Wall -Wextra -Wshadow
+CFLAGS+= -Wno-uninitialized -g -O2 -D_GNU_SOURCE -D__OSX__ -I. -I.. ${INCFLAGS}
+CFLAGS+= -DSWM_LIB=\"$(LIBDIR)/libswmhack.so.$(LVERS)\"
+ifneq ("${BUILDVERSION}", "")
+CFLAGS+= -DSPECTRWM_BUILDSTR=\"$(BUILDVERSION)\"
+endif
 
 CC?= cc
 
-LVERS= $(shell . ../lib/shlib_version; echo $$major.$$minor)
-
 all: spectrwm libswmhack.so.$(LVERS)
 
 spectrwm.c: