summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-04-17 11:14:38 -0500
committerHombreLaser <sebastian-440@live.com>2022-04-17 11:14:38 -0500
commit3f9e0da725963bb27aeccf852bf342a9cce2a34b (patch)
tree9bd646536d93f9f357a4e99eca3b9fff4ae340b6 /makefile
parent4a2d657cc5bf8ea685a0daaec803363bc2c7822c (diff)
Añadido código de las reglas, solucionado errores.
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index c8b4e2f..8ec96d2 100644
--- a/makefile
+++ b/makefile
@@ -1,7 +1,7 @@
CC=g++
CFLAGS= -std=gnu++17 -g
-DEPS = include/lexer.hpp include/exceptions.hpp include/parser.hpp include/expressions.hpp
-OBJ = expressions.o expression_base.o lexer.o exceptions.o parser.o main.o
+DEPS = include/lexer.hpp include/exceptions.hpp include/parser.hpp include/expressions.hpp include/differentiator.hpp
+OBJ = expressions.o differentiator.o expression_base.o lexer.o exceptions.o parser.o main.o
%.o : %.cpp $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)