diff options
author | arg@10ksloc.org <unknown> | 2006-08-04 09:35:27 +0200 |
---|---|---|
committer | arg@10ksloc.org <unknown> | 2006-08-04 09:35:27 +0200 |
commit | 7817523a685f0dbba2e074a448099558a54b1b9c (patch) | |
tree | 1bdeab046e27a18469750082e8dfdcaa3ce74db6 /config.mk |
initial import
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..a4d21ac --- /dev/null +++ b/config.mk @@ -0,0 +1,24 @@ +# dwm version +VERSION = 0.0 + +# 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/usr/lib -I${X11INC} +LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 + +# flags +CFLAGS = -O3 ${INCS} -DVERSION=\"${VERSION}\" +LDFLAGS = ${LIBS} +#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" +#LDFLAGS = -g ${LIBS} + +# compiler +CC = cc |