2019-09-04 22:16:39 +00:00
|
|
|
# dwm version
|
2024-03-20 06:59:57 +00:00
|
|
|
VERSION = 6.5
|
2019-09-04 22:16:39 +00:00
|
|
|
|
|
|
|
# Customize below to fit your system
|
|
|
|
|
|
|
|
# paths
|
|
|
|
PREFIX = /usr/local
|
|
|
|
MANPREFIX = ${PREFIX}/share/man
|
|
|
|
|
|
|
|
X11INC = /usr/X11R6/include
|
|
|
|
X11LIB = /usr/X11R6/lib
|
|
|
|
|
2021-05-09 18:03:23 +00:00
|
|
|
# FreeBSD (uncomment)
|
|
|
|
#X11INC = /usr/local/include
|
|
|
|
#X11LIB = /usr/local/lib
|
|
|
|
|
2019-09-04 22:16:39 +00:00
|
|
|
# Xinerama, comment if you don't want it
|
|
|
|
XINERAMALIBS = -lXinerama
|
|
|
|
XINERAMAFLAGS = -DXINERAMA
|
|
|
|
|
|
|
|
# freetype
|
|
|
|
FREETYPELIBS = -lfontconfig -lXft
|
|
|
|
FREETYPEINC = /usr/include/freetype2
|
2021-05-09 18:03:23 +00:00
|
|
|
# FreeBSD (uncomment)
|
|
|
|
#FREETYPEINC = /usr/local/include/freetype2
|
2019-09-04 22:16:39 +00:00
|
|
|
# OpenBSD (uncomment)
|
|
|
|
#FREETYPEINC = ${X11INC}/freetype2
|
2020-09-11 15:24:43 +00:00
|
|
|
# OpenBSD - Uncomment this for the swallow patch / SWALLOW_PATCH
|
|
|
|
#KVMLIB = -lkvm
|
2019-09-04 22:16:39 +00:00
|
|
|
|
2022-03-06 10:38:22 +00:00
|
|
|
# Uncomment this for the alpha patch and the winicon patch (BAR_ALPHA_PATCH, BAR_WINICON_PATCH)
|
2024-03-20 06:59:57 +00:00
|
|
|
#XRENDER = -lXrender
|
2020-04-02 07:08:00 +00:00
|
|
|
|
2021-02-11 11:01:08 +00:00
|
|
|
# Uncomment this for the mdpcontrol patch / MDPCONTROL_PATCH
|
2020-04-02 07:08:00 +00:00
|
|
|
#MPDCLIENT = -lmpdclient
|
2019-10-10 21:09:07 +00:00
|
|
|
|
2020-07-15 06:57:30 +00:00
|
|
|
# Uncomment for the pango patch / BAR_PANGO_PATCH
|
2020-06-11 17:42:00 +00:00
|
|
|
#PANGOINC = `pkg-config --cflags xft pango pangoxft`
|
|
|
|
#PANGOLIB = `pkg-config --libs xft pango pangoxft`
|
|
|
|
|
2020-09-07 15:48:58 +00:00
|
|
|
# Uncomment for the ipc patch / IPC_PATCH
|
2021-03-29 17:36:53 +00:00
|
|
|
#YAJLLIBS = -lyajl
|
|
|
|
#YAJLINC = -I/usr/include/yajl
|
2020-09-07 15:48:58 +00:00
|
|
|
|
2020-03-31 06:21:00 +00:00
|
|
|
# Uncomment this for the rounded corners patch / ROUNDED_CORNERS_PATCH
|
|
|
|
#XEXTLIB = -lXext
|
|
|
|
|
2019-10-22 17:08:00 +00:00
|
|
|
# Uncomment this for the swallow patch / SWALLOW_PATCH
|
2021-03-29 17:36:53 +00:00
|
|
|
#XCBLIBS = -lX11-xcb -lxcb -lxcb-res
|
2019-10-22 17:08:00 +00:00
|
|
|
|
2022-07-05 12:55:42 +00:00
|
|
|
# This is needed for the winicon and tagpreview patches / BAR_WINICON_PATCH / BAR_TAGPREVIEW_PATCH
|
2021-07-27 11:40:53 +00:00
|
|
|
#IMLIB2LIBS = -lImlib2
|
|
|
|
|
2022-08-02 08:58:10 +00:00
|
|
|
# Uncomment for the bidi patch
|
2023-08-24 16:18:03 +00:00
|
|
|
#BDINC = `pkg-config --cflags fribidi`
|
|
|
|
#BDLIBS = `pkg-config --libs fribidi`
|
2022-08-02 08:58:10 +00:00
|
|
|
|
2019-09-04 22:16:39 +00:00
|
|
|
# includes and libs
|
2022-08-02 08:58:10 +00:00
|
|
|
INCS = -I${X11INC} -I${FREETYPEINC} ${YAJLINC} ${PANGOINC} ${BDINC}
|
|
|
|
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} ${XRENDER} ${MPDCLIENT} ${XEXTLIB} ${XCBLIBS} ${KVMLIB} ${PANGOLIB} ${YAJLLIBS} ${IMLIB2LIBS} $(BDLIBS)
|
2019-09-04 22:16:39 +00:00
|
|
|
|
|
|
|
# flags
|
2023-05-24 13:27:12 +00:00
|
|
|
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
|
2019-09-04 22:16:39 +00:00
|
|
|
#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
|
2022-01-18 13:29:11 +00:00
|
|
|
CFLAGS = -std=c99 -pedantic -Wall -Wno-unused-function -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS}
|
2019-09-04 22:16:39 +00:00
|
|
|
LDFLAGS = ${LIBS}
|
|
|
|
|
|
|
|
# Solaris
|
|
|
|
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
|
|
|
|
#LDFLAGS = ${LIBS}
|
|
|
|
|
|
|
|
# compiler and linker
|
|
|
|
CC = cc
|