removed CONFIG

This commit is contained in:
arg@10ksloc.org 2006-08-03 17:08:43 +02:00
parent a2d56f6dce
commit 99b126d0af
1 changed files with 2 additions and 3 deletions

View File

@ -5,7 +5,6 @@ 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
@ -23,8 +22,8 @@ options:
${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 $@