projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f20562
)
Fixed wrong order of blocks within ifeq-endif.
author
Daniel Carl
<danielcarl@gmx.de>
Sat, 27 Jun 2015 17:50:37 +0000
(19:50 +0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Sat, 27 Jun 2015 17:50:37 +0000
(19:50 +0200)
src/Makefile
patch
|
blob
|
history
diff --git
a/src/Makefile
b/src/Makefile
index
233818b
..
b72d7c9
100644
(file)
--- a/
src/Makefile
+++ b/
src/Makefile
@@
-24,10
+24,10
@@
$(LOBJ): config.h $(BASEDIR)/config.mk
$(TARGET): $(OBJ)
ifeq ($(VERBOSE),0)
- $(CC) $(OBJ) -o $@ $(LDFLAGS)
-else
@echo "$(CC) $@"
@$(CC) $(OBJ) -o $@ $(LDFLAGS)
+else
+ $(CC) $(OBJ) -o $@ $(LDFLAGS)
endif
$(LIBTARGET): $(LOBJ)