diff options
| author | stkhan <personal@slickd.xyz> | 2022-10-13 20:53:20 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2022-10-13 20:53:20 -0500 |
| commit | c3d8e41d01508b37101d37705f8c5b4a0fa1ab4f (patch) | |
| tree | 357306bfea02845214b4d3dc5487155e8b612771 /wm/dwm-6.4/config.mk | |
| parent | 01473099f4d6eedaaa2bbb307c905a3e06b3b708 (diff) | |
Update dwm to 6.4
Diffstat (limited to 'wm/dwm-6.4/config.mk')
| -rw-r--r-- | wm/dwm-6.4/config.mk | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/wm/dwm-6.4/config.mk b/wm/dwm-6.4/config.mk new file mode 100644 index 0000000..026ccc3 --- /dev/null +++ b/wm/dwm-6.4/config.mk @@ -0,0 +1,40 @@ +# dwm version +VERSION = 6.4 + +# Customize below to fit your system + +# paths +PREFIX = /usr/local +MANPREFIX = ${PREFIX}/share/man + +X11INC = /usr/X11R6/include +X11LIB = /usr/X11R6/lib + +# Xinerama, comment if you don't want it +XINERAMALIBS = -lXinerama +XINERAMAFLAGS = -DXINERAMA + +# freetype +FREETYPELIBS = -lfontconfig -lXft +FREETYPEINC = /usr/include/freetype2 +# OpenBSD (uncomment) +#FREETYPEINC = ${X11INC}/freetype2 +#MANPREFIX = ${PREFIX}/man +#KVMLIB = -lkvm + +# includes and libs +INCS = -I${X11INC} -I${FREETYPEINC} +LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lX11-xcb -lXrender -lxcb -lxcb-res ${KVMLIB} + +# flags +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} +#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -O3 ${INCS} ${CPPFLAGS} +LDFLAGS = ${LIBS} + +# Solaris +#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" +#LDFLAGS = ${LIBS} + +# compiler and linker +CC = cc |