From e20a439f0de08052fad50669fd005dee14d40cae Mon Sep 17 00:00:00 2001 From: stkhan Date: Fri, 18 Mar 2022 08:09:07 -0800 Subject: Update dwm, added farbfeld, sent, and wmname plus more --- dwm-6.3/config.mk | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 dwm-6.3/config.mk (limited to 'dwm-6.3/config.mk') diff --git a/dwm-6.3/config.mk b/dwm-6.3/config.mk new file mode 100644 index 0000000..5cb4322 --- /dev/null +++ b/dwm-6.3/config.mk @@ -0,0 +1,37 @@ +# dwm version +VERSION = 6.3 + +# Customize below to fit your system + +# paths +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 + +# includes and libs +INCS = -I${X11INC} -I${FREETYPEINC} +LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lXrender + +# 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 -Os ${INCS} ${CPPFLAGS} +LDFLAGS = ${LIBS} + +# Solaris +#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" +#LDFLAGS = ${LIBS} + +# compiler and linker +CC = cc -- cgit v1.2.3