summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Makefile4
1 files changed, 2 insertions, 2 deletions
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)