Browse Source

fixed makefile

master
Connor Lane Smith 14 years ago
parent
commit
8f7b62e2b6
1 changed files with 7 additions and 3 deletions
  1. +7
    -3
      Makefile

+ 7
- 3
Makefile View File

@@ -6,7 +6,7 @@ include config.mk
SRC = dinput.c dmenu.c draw.c
OBJ = ${SRC:.c=.o}

all: options draw.o dinput dmenu
all: options dinput dmenu

options:
@echo dmenu build options:
@@ -24,9 +24,13 @@ config.h:
@echo creating $@ from config.def.h
@cp config.def.h $@

.o:
dinput: dinput.o draw.o
@echo CC -o $@
@${CC} -o $@ $< draw.o ${LDFLAGS}
@${CC} -o $@ $+ ${LDFLAGS}

dmenu: dmenu.o draw.o
@echo CC -o $@
@${CC} -o $@ $+ ${LDFLAGS}

clean:
@echo cleaning


Loading…
Cancel
Save