Ajout eval final avec mips
This commit is contained in:
17
eval-fourni/Makefile
Normal file
17
eval-fourni/Makefile
Normal file
@@ -0,0 +1,17 @@
|
||||
CC = gcc
|
||||
|
||||
LIBS = -lm
|
||||
CCFLAGS = -Wall -ggdb
|
||||
|
||||
all: compare_arbres_xml
|
||||
|
||||
compare_arbres_xml: compare_arbres_xml.c analyseur_xml.o
|
||||
$(CC) $(CCFLAGS) -o compare_arbres_xml compare_arbres_xml.c analyseur_xml.o
|
||||
|
||||
analyseur_xml.o: analyseur_xml.c
|
||||
$(CC) $(CCFLAGS) -c analyseur_xml.c
|
||||
|
||||
.PHONY : clean
|
||||
|
||||
clean:
|
||||
- rm -rf *.o compare_arbres_xml output
|
||||
Reference in New Issue
Block a user