Fixed wrong order of blocks within ifeq-endif.
authorDaniel Carl <danielcarl@gmx.de>
Sat, 27 Jun 2015 17:50:37 +0000 (19:50 +0200)
committerDaniel Carl <danielcarl@gmx.de>
Sat, 27 Jun 2015 17:50:37 +0000 (19:50 +0200)
src/Makefile

index 233818b..b72d7c9 100644 (file)
@@ -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)