Makefile
changeset 186 c0defd7d5a5a
parent 185 4b770a585866
child 204 38acc0874280
--- a/Makefile	Thu Aug 03 15:36:13 2006 +0200
+++ b/Makefile	Thu Aug 03 17:08:43 2006 +0200
@@ -5,7 +5,6 @@
 
 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
@@ -23,8 +22,8 @@
 ${OBJ}: dwm.h config.h
 
 config.h:
-	@echo creating $@ from ${CONFIG}
-	@cp ${CONFIG} $@
+	@echo creating $@ from config.default.h
+	@cp config.default.h $@
 
 dwm: ${OBJ}
 	@echo LD $@