pinosaur
/
dmenu.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ec16d9
)
fixed makefile
author
Connor Lane Smith
<cls@lubutu.com>
Wed, 23 Jun 2010 13:29:32 +0000
(14:29 +0100)
committer
Connor Lane Smith
<cls@lubutu.com>
Wed, 23 Jun 2010 13:29:32 +0000
(14:29 +0100)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
2f1cada
..
da5344b
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-6,7
+6,7
@@
include config.mk
SRC = dinput.c dmenu.c draw.c
OBJ = ${SRC:.c=.o}
-all: options d
raw.o d
input 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