update
This commit is contained in:
30
DEV/DEV1.1_suite/TP_Piles/Parenthèse/Makefile
Normal file
30
DEV/DEV1.1_suite/TP_Piles/Parenthèse/Makefile
Normal file
@@ -0,0 +1,30 @@
|
||||
# 1 : BUT FINAL
|
||||
|
||||
but : exe
|
||||
|
||||
# 2 : VARIABLES
|
||||
|
||||
OFILES = tableau.o \
|
||||
main.o
|
||||
|
||||
CC = gcc
|
||||
|
||||
CFLAGS = -Wall -g
|
||||
|
||||
# 3 : DEPENDANCES (REGLES IMPLICITES)
|
||||
|
||||
main.o : main.c tableau.h
|
||||
|
||||
#4 : DEPENDANCES AVEC COMMANDES
|
||||
|
||||
exe : $(OFILES)
|
||||
$(CC) $(CFLAGS) -o exe $(OFILES)
|
||||
|
||||
#5 : NETTOYAGE DES FICHIERS GENERES
|
||||
|
||||
clean :
|
||||
-rm -f $(OFILES) exe
|
||||
|
||||
#6 : BUTS FACTICES
|
||||
|
||||
.PHONY : but clean
|
Reference in New Issue
Block a user