From: Daniel Carl <danielcarl@gmx.de>
Date: Sat, 27 Jun 2015 17:50:37 +0000 (+0200)
Subject: Fixed wrong order of blocks within ifeq-endif.
X-Git-Url: https://git.owens.tech/projects.html/projects.html/git?a=commitdiff_plain;h=1a8f7e520fbd3eee7e0f4c25f75bf02ff3c58724;p=vimb.git

Fixed wrong order of blocks within ifeq-endif.
---

diff --git a/src/Makefile b/src/Makefile
index 233818b..b72d7c9 100644
--- 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)