Makefile updated t#30

This commit is contained in:
Scarlett
2025-02-20 14:30:18 -05:00
parent 56134cba48
commit 5171e4bc86
2 changed files with 2 additions and 44 deletions

View File

@ -5,7 +5,7 @@ EXE := alpha
CFLAGS := -std=c99 -Wall
CPPFLAGS :=
build: lex.yy.c runner.o runner
compiler: lex.yy.c runner.o runner
lex.yy.c: lexicalStructure.lex
$(FLEX) -o lex.yy.c $(LEX)
@ -38,6 +38,7 @@ test:
./$(EXE) -tok ./tests/test_simpleLiterals.alpha
./$(EXE) -tok ./tests/test_real_alpha_file.alpha
./$(EXE) -tok ./tests/test_real_alpha_2.alpha
clean:
rm -f *.o
rm -f lex.yy.c