-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
62 lines (47 loc) · 2.31 KB
/
Makefile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Options de compilation
# (infos debug, tous warnings, standard C99, dossier include)
CFLAGS=-g -Wall -Wextra -std=c99 -Iinclude
# Options d'édition des liens (pour utiliser math.h)
LDLIBS=-lm
# List source files
SRC=$(wildcard src/*.c)
OBJ=$(subst src/, obj/, $(SRC:.c=.o))
# Règle par défaut : générer tous les exécutables
all: $(OBJ) bin/test_pgm_read bin/test_pgm_write bin/test_pgm_threshold bin/test_bool bin/test_morphology bin/test_image_processing bin/test_counter bin/main bin/test_label
# Règle générique pour générer les fichiers objets pour les sources (.c -> .o)
obj/%.o: src/%.c
gcc $(CFLAGS) -c $^ -o $@
# Règle générique pour générer les fichiers objets pour les tests (.c -> .o)
obj/test_%.o: test/test_%.c
gcc $(CFLAGS) -c $^ -o $@
# Règle générique pour générer les exécutables de test (.o -> executable)
bin/test_%: obj/%.o obj/test_%.o
gcc $^ $(LDLIBS) -o $@
# Règle spécifique pour test_pgm_write
bin/test_pgm_write : obj/test_pgm_write.o obj/pgm_read.o obj/pgm_write.o
gcc $^ $(LDLIBS) -o $@
# Règle spécifique pour test_threshold
bin/test_pgm_threshold : obj/test_pgm_threshold.o obj/threshold.o obj/pgm_read.o obj/pgm_write.o
gcc $^ $(LDLIBS) -o $@
# Règle spécifique pour test_bool
bin/test_bool : obj/test_bool.o obj/bool.o obj/pgm_read.o obj/pgm_write.o
gcc $^ $(LDLIBS) -o $@
# Règle spécifique pour test_morphology
bin/test_morphology : obj/test_morphology.o obj/morphology.o obj/pgm_read.o obj/pgm_write.o obj/bool.o obj/image_processing.o
gcc $^ $(LDLIBS) -o $@
# Règle spécifique pour test_image_processing
bin/test_image_processing : obj/test_image_processing.o obj/morphology.o obj/pgm_read.o obj/pgm_write.o obj/bool.o obj/image_processing.o
gcc $^ $(LDLIBS) -o $@
# Règle spécifique pour test_counter
bin/test_counter : obj/test_counter.o obj/pgm_read.o obj/counter.o
gcc $^ $(LDLIBS) -o $@
# Règle spécifique pour main
bin/main : obj/main.o obj/morphology.o obj/pgm_read.o obj/pgm_write.o obj/bool.o obj/image_processing.o obj/counter.o obj/threshold.o obj/label.o
gcc $^ $(LDLIBS) -o $@
# Règle spécifique pour test_label
bin/test_label : obj/test_label.o obj/morphology.o obj/pgm_read.o obj/pgm_write.o obj/bool.o obj/image_processing.o obj/counter.o obj/threshold.o obj/label.o
gcc $^ $(LDLIBS) -o $@
# Règle de nettoyage
clean:
rm -rf bin obj
mkdir bin obj