X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=config.mk;h=690d48fa575ea2a64f20041b8acac54367f3291a;hb=2e0c767d74da024c3cd4dbd524e1364039704451;hp=94b24eda85e23c7f453776891f43dac0037fb271;hpb=b515765216c46246358256da6098ea2c07a93c84;p=dwm.git diff --git a/config.mk b/config.mk index 94b24ed..690d48f 100644 --- a/config.mk +++ b/config.mk @@ -1,5 +1,5 @@ # dwm version -VERSION = 0.6 +VERSION = 1.1 # Customize below to fit your system @@ -11,14 +11,15 @@ X11INC = /usr/X11R6/include X11LIB = /usr/X11R6/lib # includes and libs -INCS = -I/usr/lib -I${X11INC} +INCS = -I. -I/usr/include -I${X11INC} LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 # flags -CFLAGS = -O3 ${INCS} -DVERSION=\"${VERSION}\" +CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" LDFLAGS = ${LIBS} #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" #LDFLAGS = -g ${LIBS} -# compiler +# compiler and linker CC = cc +LD = ${CC}