Préparation pour test intermediaire

- Analyseur lexical OK
- Analyseur syntaxyque OK
This commit is contained in:
2016-02-09 15:45:20 +01:00
parent 3b5b693f67
commit 755d2b6140
63 changed files with 8847 additions and 49 deletions

17
test/Makefile Normal file
View 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 -f *.o compare_arbres_xml