From 0bfe16d8289bf1f94813b21452f9d3be52f75f1e Mon Sep 17 00:00:00 2001 From: ben Date: Sun, 11 Jul 2010 18:26:38 +0200 Subject: makefile: restart make after depend creation now without this fix, dependency changes were recognized not before executing make 2 times --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 $@ -- cgit