Java
This commit is contained in:
24
DEV1.1/CM3/Makefile
Normal file
24
DEV1.1/CM3/Makefile
Normal 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}
|
Reference in New Issue
Block a user