-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.txt
50 lines (32 loc) · 1.1 KB
/
Makefile.txt
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
# Compilteur
CC := gcc
#options de compilation
CFLAGS := -ansi -Wall -Wextra -pedantic -ggdb
MODULE := file trier_monotonie
HEADERS := $(MODULE:%=%.h)
.PHONY : all tester debug memoire
# si vous faites un programme de test
#all : trier tester_trier
# sinon
all : trier
# Règle de compilation
%.o : %.c $(HEADERS)
$(CC) -c $(CFLAGS) -o $@ $<
trier : $(MODULE:%=%.o) $(HEADERS) trier.c
$(CC) $(CFLAGS) -o $@ $(MODULE:%=%.o) trier.c
# pour le programme de test
tester_trier : $(MODULE:%=%.o) $(HEADERS) tester_trier.c
$(CC) $(CFLAGS) -o $@ $(MODULE:%=%.o) tester_trier.c
tst : tester_trier
./tester_trier |head
# Fichier à trier pour effectuer les tests
TEST_FILE := trier.c
tester : trier
./trier < $(TEST_FILE) > $(TEST_FILE).trie
# pour que sort fonctionne avec 'native byte value'
LC_ALL=C ; sort < $(TEST_FILE) > $(TEST_FILE).sorted
if diff $(TEST_FILE).trie $(TEST_FILE).sorted ; then echo "OK" ; else echo "SOUCIS" ; fi
debug :
nemiver ./trier < $(TEST_FILE)
memoire : trier
valgrind --leak-check=full ./trier < $(TEST_FILE)