summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorben <benjaminfranzke@googlemail.com>2010-07-11 18:26:38 +0200
committerben <benjaminfranzke@googlemail.com>2010-07-11 18:26:38 +0200
commit0bfe16d8289bf1f94813b21452f9d3be52f75f1e (patch)
tree2d7592b4fb7543f6b0d0e62717887080d207b67b
parent8c3db10b5bf7b77ff959d7d0b6cc425cfb37ccda (diff)
downloadpa-sink-ctl-0bfe16d8289bf1f94813b21452f9d3be52f75f1e.tar.gz
pa-sink-ctl-0bfe16d8289bf1f94813b21452f9d3be52f75f1e.tar.bz2
pa-sink-ctl-0bfe16d8289bf1f94813b21452f9d3be52f75f1e.zip
makefile: restart make after depend creation now
without this fix, dependency changes were recognized not before executing make 2 times
-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 $@