aboutsummaryrefslogtreecommitdiff
path: root/semestre 3/structures des données/tme/tme3-5/exo1/Makefile
blob: 0f5d8a6d0746bf07e1f53006f95960112ee47bfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: main.o biblioLC.o entreeSortieLC.o
	gcc -o main main.o biblioLC.o entreeSortieLC.o

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

biblioLC.o: biblioLC.c biblioLC.h
	gcc -c biblioLC.c biblioLC.h

entreeSortieLC.o: entreeSortieLC.c entreeSortieLC.h
	gcc -c entreeSortieLC.c entreeSortieLC.h

clean:
	rm *.o
	rm *.gch