This commit is contained in:
Simoes Lukas
2025-01-30 16:07:12 +01:00
parent 59f7eead89
commit 2217e7986c
62 changed files with 4609 additions and 49 deletions

24
DEV1.1/CM3/Makefile Normal file
View File

@@ -0,0 +1,24 @@
CC = gcc
CFLAGS = -ansi \
-pedantic
EXE = final
OFILES = queue.o \
bifurcation.o
### BUT PAR DEFAUT ###
final : ${EXE}
### REGLES ESSENTIELLES ###
bifuraction.o : bifurcation.c
queue.o : queue.h queue.c
${EXE} : ${OFILES}
$(CC) $(CFLAGS) -o ${EXE} ${OFILES}
### REGLES OPTIONNELLES ###
clean :
-rm -f ${OFILES} ${EXE}