fixed makefile

This commit is contained in:
Connor Lane Smith 2010-06-23 14:29:32 +01:00
parent 2ec16d9cb2
commit 8f7b62e2b6
1 changed files with 7 additions and 3 deletions

View File

@ -6,7 +6,7 @@ include config.mk
SRC = dinput.c dmenu.c draw.c SRC = dinput.c dmenu.c draw.c
OBJ = ${SRC:.c=.o} OBJ = ${SRC:.c=.o}
all: options draw.o dinput dmenu all: options dinput dmenu
options: options:
@echo dmenu build options: @echo dmenu build options:
@ -24,9 +24,13 @@ config.h:
@echo creating $@ from config.def.h @echo creating $@ from config.def.h
@cp config.def.h $@ @cp config.def.h $@
.o: dinput: dinput.o draw.o
@echo CC -o $@ @echo CC -o $@
@${CC} -o $@ $< draw.o ${LDFLAGS} @${CC} -o $@ $+ ${LDFLAGS}
dmenu: dmenu.o draw.o
@echo CC -o $@
@${CC} -o $@ $+ ${LDFLAGS}
clean: clean:
@echo cleaning @echo cleaning