Skip to content

Commit fa2084e

Browse files
committed
debug flag
1 parent 2d6f75f commit fa2084e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
CFLAGS = -Wall -std=c99
1+
CFLAGS = -Wall -std=c99 -g
22
OUTFILE = hac
33
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
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 temp/optimizer.o
55
#always compiles when using just make
66
test/hac: src/main.c src/lex.c src/grammar.c
77
cc $(CFLAGS) -o hac $(SOURCES)

0 commit comments

Comments
 (0)