Skip to content
Snippets Groups Projects
Commit 2f0381e9 authored by Jonas Seidel's avatar Jonas Seidel
Browse files

correcting makefile dependencies

parent f43f8205
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ CXXFLAGS = -O0 -g -std=c++17 -Wall -Wextra -Wpedantic
a.out: exec.o Graph.o Edge.o Node.o
$(CXX) $(CXXFLAGS) -o $@ $^
exec.o: exec.cpp alg.o Graph.o
exec.o: exec.cpp alg.cpp Graph.o
$(CXX) $(CXXFLAGS) -c $<
Graph.o: Graph.cpp latex.cpp Graph.h Edge.o Node.o preprocessor_compile_control.h
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment