-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
37 lines (23 loc) · 965 Bytes
/
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
all : application
# Test : dep with .h versus dep with .c
application : strhelpers.o serveur.o client.o lect_img.o
gcc strhelpers.o serveur.o lect_img.o mem_targa.o -o enstaserveur -lm
gcc strhelpers.o client.o lect_img.o mem_targa.o -o enstaclient -lm
mem_targa.o : mem_targa.c mem_targa.h
gcc -g -Wall -c mem_targa.c -o mem_targa.o
lect_img.o : lect_img.c mem_targa.h
gcc -g -Wall -c lect_img.c -o lect_img.o
#crypt_img.o : crypt_img.c crypt_img.h
# gcc -g -Wall -c crypt_img.c -o crypt_img.o
serveur.o : serveur.c strhelpers.h lect_img.h mem_targa.h
gcc -c serveur.c -o serveur.o
client.o : client.c strhelpers.h lect_img.h mem_targa.h
gcc -c client.c -o client.o
strhelpers.o : strhelpers.c
gcc -c strhelpers.c -o strhelpers.o
# serveur.o : serveur.c strhelpers.h
# gcc -c serveur.c -o serveur.o
# client.o : client.c strhelpers.h
# gcc -c client.c -o client.o
# strhelpers.o : strhelpers.c
# gcc -c strhelpers.c -o strhelpers.o