aboutsummaryrefslogtreecommitdiff
path: root/semestre 3/structures des données/tme/tme3-5/exo2/Makefile
blob: 28930dfacaeb93fc502803fbb7142600a37a26f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: main.o biblioH.o entreeSortieH.o
	gcc -o main main.o biblioH.o entreeSortieH.o -lm

main.o: main.c
	gcc -c main.c -lm

biblioH.o: biblioH.c biblioH.h
	gcc -c biblioH.c biblioH.h -lm

entreeSortieH.o: entreeSortieH.c entreeSortieH.h
	gcc -c entreeSortieH.c entreeSortieH.h -lm

clean:
	rm *.o
	rm *.gch