We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d6f75f commit fa2084eCopy full SHA for fa2084e
Makefile
@@ -1,7 +1,7 @@
1
-CFLAGS = -Wall -std=c99
+CFLAGS = -Wall -std=c99 -g
2
OUTFILE = hac
3
SOURCES = src/main.c src/lex.c src/grammar.c src/tree.c src/lextest.c src/symbolTable.c src/codeGen.c src/testbfi.c src/compilerFunctions.c src/codeEss.c src/optimizer.c
4
-OBJS = temp/codeGen.o temp/symbolTable.o temp/grammar.o temp/tree.o temp/main.o temp/lex.o temp/lextest.o temp/testbfi.o temp/compilerFunctions.o temp/codeEss.o
+OBJS = temp/codeGen.o temp/symbolTable.o temp/grammar.o temp/tree.o temp/main.o temp/lex.o temp/lextest.o temp/testbfi.o temp/compilerFunctions.o temp/codeEss.o temp/optimizer.o
5
#always compiles when using just make
6
test/hac: src/main.c src/lex.c src/grammar.c
7
cc $(CFLAGS) -o hac $(SOURCES)
0 commit comments