summaryrefslogtreecommitdiff
path: root/wm/dwm-6.3/config.mk
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2023-03-11 16:39:07 -0600
committerstkhan <personal@slickd.xyz>2023-03-11 16:39:07 -0600
commit2083a177d2e3b069b0343bcbc3027fd4c5cf7dba (patch)
tree25dc50a4d0e997c372df7e0eb529e69be1011872 /wm/dwm-6.3/config.mk
parente73a4b48c2d9bfe6faf6bca3772f948b1c8b4a24 (diff)
update to dwm 6.4
Diffstat (limited to 'wm/dwm-6.3/config.mk')
-rw-r--r--wm/dwm-6.3/config.mk36
1 files changed, 0 insertions, 36 deletions
diff --git a/wm/dwm-6.3/config.mk b/wm/dwm-6.3/config.mk
deleted file mode 100644
index ebb872b..0000000
--- a/wm/dwm-6.3/config.mk
+++ /dev/null
@@ -1,36 +0,0 @@
-include ../../config.mk
-# dwm version
-VERSION = 6.3
-
-# Customize below to fit your system
-
-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
-#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 -Ofast ${INCS} ${CPPFLAGS}
-LDFLAGS = ${LIBS}
-
-# Solaris
-#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
-#LDFLAGS = ${LIBS}
-
-# compiler and linker
-CC = cc