From 7bc460eb28b829537ba9b117eba238d4eaf7b059 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 16 Jun 2020 20:08:25 +0530 Subject: Init commit with all the shit --- config.mk | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 config.mk (limited to 'config.mk') diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..ecd08e1 --- /dev/null +++ b/config.mk @@ -0,0 +1,23 @@ +# dwm version +VERSION = 6.2 + +# Customize below to fit your system + +# paths +PREFIX = /usr/local +MANPREFIX = ${PREFIX}/share/man + +X11INC = /usr/X11R6/include +X11LIB = /usr/X11R6/lib + +# includes and libs +INCS = -I${X11INC} +LIBS = -L${X11LIB} -lX11 + +# flags +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" +CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS} +LDFLAGS = ${LIBS} + +# compiler and linker +CC = cc -- cgit v1.3.1