JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
removed rm config.h from clean
[dwm.git] / Makefile
index 57cacbb..4df8e9a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,7 @@ include config.mk
 
 SRC = client.c draw.c event.c main.c tag.c util.c
 OBJ = ${SRC:.c=.o}
+CONFIG ?= config.default.h
 
 all: options dwm
        @echo finished
@@ -21,9 +22,9 @@ options:
 
 ${OBJ}: dwm.h config.h
 
-config.h:
-       @echo creating default $@
-       @cp config.default.h $@
+config.h: ${CONFIG}
+       @echo creating $@ from ${CONFIG}
+       @cp ${CONFIG} $@
 
 dwm: ${OBJ}
        @echo LD $@