TP17 Organisation du code

This commit is contained in:
2021-10-19 14:22:25 +02:00
parent 8c5c9946bf
commit acd09bd426
15 changed files with 390 additions and 0 deletions

18
APL1.1/TP17/exo2/Makefile Normal file
View File

@@ -0,0 +1,18 @@
but : exo2
OFILES = file.o \
attente.o
CC = gcc
CFLAGS = -Wall -ansi -pedantic -g
file.o : file.h
attente.o : file.h
exo2 : $(OFILES)
$(CC) $(CFLAGS) -o attente.out $(OFILES)
clean :
-rm -f $(OFILES) exo2
.PHONY : but clean