X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=config.mk;h=21594813644baee48047f4a2919791c131463add;hb=95766d6241a401b3665ac1ad528b90c55e7b6810;hp=b3c8cf749010010175a262f09df62edf4fc6d0ab;hpb=77f8c075c48e510e064b8f0b7b823a7e1f9f44b7;p=dwm.git diff --git a/config.mk b/config.mk index b3c8cf7..2159481 100644 --- a/config.mk +++ b/config.mk @@ -1,4 +1,7 @@ -# Customize to fit your system +# dwm version +VERSION = 0.9 + +# Customize below to fit your system # paths PREFIX = /usr/local @@ -11,17 +14,12 @@ X11LIB = /usr/X11R6/lib INCS = -I/usr/lib -I${X11INC} LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -# dwm version -VERSION = 0.6 - -# default config.h -CONFIG = config.h - # flags -CFLAGS = -O3 ${INCS} -DVERSION=\"${VERSION}\" -DCONFIG=\"${CONFIG}\" +CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" LDFLAGS = ${LIBS} -#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" -DCONFIG=\"${CONFIG}\" +#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" #LDFLAGS = -g ${LIBS} -# compiler +# compiler and linker CC = cc +LD = ${CC}