about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 77f75e6..817c2e1 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,10 @@ options:
 	@echo CC $<
 	@${CC} -c ${CFLAGS} $<
 
-${OBJ}: dwm.h
+${OBJ}: dwm.h config.h
+
+config.h:
+	cp config.default.h config.h
 
 dwm: ${OBJ}
 	@echo LD $@