3 # you may want to change these
4 OPTIONAL = xinerama xft
5 CDEFS = -DUSE_XINERAMA -DUSE_XFT -DUSE_STRCASESTR
7 # you may not want to change these
9 LIBS = `pkg-config --libs x11 $(OPTIONAL)`
11 CFLAGS = $(CDEFS) -std=c89 -DVERSION=\"$(VERSION)\" `pkg-config --cflags x11 $(OPTIONAL)`
13 .PHONY: all clean install debug no_xft no_xinerama no_xft_xinerama gnu manpage
18 $(CC) $(CFLAGS) mymenu.c -o mymenu $(LIBS) $(OPTIM)
23 mandoc -T markdown mymenu.1 > mymenu.1.md
26 make CDEFS="-D_GNU_SOURCE $(CDEFS)"
29 make OPTIM="-g -O0 -Wall"
32 make OPTIONAL="xinerama" CDEFS="-DUSE_XINERAMA -DUSE_STRCASESTR"
35 make OPTIONAL="xft" CDEFS="-DUSE_XFT -DUSE_STRCASESTR"
37 no_xft_xinerama: mymenu.c
38 make OPTIONAL="" CDEFS="-DUSE_STRCASESTR"