diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-06-16 20:08:25 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-06-16 20:09:14 +0530 |
| commit | 7bc460eb28b829537ba9b117eba238d4eaf7b059 (patch) | |
| tree | 19244b8b5d43d0e0ccb0060d5d2df3736b096202 /config.mk | |
| download | shotkey-7bc460eb28b829537ba9b117eba238d4eaf7b059.tar.gz shotkey-7bc460eb28b829537ba9b117eba238d4eaf7b059.zip | |
Init commit with all the shit
Diffstat (limited to 'config.mk')
| -rw-r--r-- | config.mk | 23 |
1 files changed, 23 insertions, 0 deletions
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 |
