summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4f5fda8..7180226 100644
--- a/Makefile
+++ b/Makefile
@@ -10,8 +10,11 @@ LDFLAGS=-lncurses -lpulse -lform
DEPENDFILE=.depend
-all: $(DEPENDFILE) $(BIN)
.PHONY: all clean
+.SILENT: all
+
+all: $(DEPENDFILE)
+ $(MAKE) --no-print-directory $(BIN)
$(BIN): $(OBJS)
$(CC) $(LDFLAGS) $(CFLAGS) $+ -o $@