Initial Commit

This commit is contained in:
2016-01-19 14:26:58 +01:00
parent 36baf73cca
commit 02076b62f5
21 changed files with 947 additions and 0 deletions

20
Makefile Normal file
View File

@@ -0,0 +1,20 @@
CC = gcc
LIBS = -lm
CCFLAGS = -Wall -ggdb
OBJ = analyseur_lexical.o util.o
all: test_yylex
test_yylex: test_yylex.c $(OBJ)
$(CC) $(CCFLAGS) -o test_yylex test_yylex.c $(OBJ)
analyseur_lexical.o: analyseur_lexical.c
$(CC) $(CCFLAGS) -c $^
.PHONY : clean
clean:
- rm -f $(OBJ)
- rm -f test_yylex