summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-04-02 11:53:03 -0600
committerHombreLaser <sebastian-440@live.com>2022-04-02 11:53:03 -0600
commit4a8400c2846a0db0778817e48da6c0f20849471f (patch)
tree9c46205ea9ca5a8fbe9d8b590c24172be911615a /makefile
parente3936c5fc5b846f90d8cdfc589960c6881caa019 (diff)
Todo listo para el parser
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 98d091e..0c210ac 100644
--- a/makefile
+++ b/makefile
@@ -1,7 +1,7 @@
CC=g++
CFLAGS= -std=gnu++17 -g
-DEPS = include/lexer.hpp include/exceptions.hpp
-OBJ = lexer.o exceptions.o main.o
+DEPS = include/lexer.hpp include/exceptions.hpp include/parser.hpp
+OBJ = lexer.o exceptions.o parser.o main.o
%.o : %.cpp $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)