summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6aa9d442dc67da7c1cd8fe8a344b7185ca8cb6c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
BIN=ddhardrescue
CFLAGS=-Iinc -Wall -g -pg
LIBS=-lpanel -lncurses -lpthread


#FIXME : liste des dépendances = tous les .c trouvés. C'est nul.
$(BIN): bin/$(BIN)

bin/$(BIN): obj/$(BIN).o $(patsubst src/%.c,obj/%.o,$(wildcard src/*.c))
	gcc -o $@ $^ $(CFLAGS) $(LIBS)

obj/%.o:
	gcc -c -o $@ $< $(CFLAGS)

deps/%.d: src/%.c
	gcc -o $@ $< $(CFLAGS) -MM -MG -MT $(patsubst src/%.c,obj/%.o,$<) 

Makefile src/%.c inc/%.h: ;

.PHONY: clean

clean:
	-rm -f obj/*.o deps/*.d bin/* 

include $(patsubst src/%.c,deps/%.d,$(wildcard src/*.c))