From c5f58f1bc59707660112f21d91f38468be60f7a5 Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Sun, 6 Mar 2011 11:49:15 +0000 Subject: Code qui compile sans warnings (mess up avec un struct et un typedef). Makefile améliore pour make cont : réactif comme il faut, n'utilise plus watch. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///var/svn/2011-ddhardrescue/trunk@9 d3078510-dda0-49f1-841c-895ef4b7ec81 --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6aa9d44..d49717f 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,10 @@ BIN=ddhardrescue -CFLAGS=-Iinc -Wall -g -pg +CFLAGS=-Iinc -Wall -Werror -Wfatal-errors -g -pg LIBS=-lpanel -lncurses -lpthread - #FIXME : liste des dépendances = tous les .c trouvés. C'est nul. + +all: $(BIN) $(BIN): bin/$(BIN) bin/$(BIN): obj/$(BIN).o $(patsubst src/%.c,obj/%.o,$(wildcard src/*.c)) @@ -22,5 +23,9 @@ Makefile src/%.c inc/%.h: ; clean: -rm -f obj/*.o deps/*.d bin/* +cont: + while true; do clear; date; LANG=C make; echo "make returns '$$?'";\ + inotifywait -e modify -r . --exclude '(~$$|\.swp$$)' 2>/dev/null; done + include $(patsubst src/%.c,deps/%.d,$(wildcard src/*.c)) -- cgit v1.2.3