Skip to content
Snippets Groups Projects
Commit e641c4da authored by Oliver Bock's avatar Oliver Bock
Browse files

Fixed Makefile for proper linking

parent 434038db
No related branches found
No related tags found
No related merge requests found
......@@ -14,8 +14,8 @@ else
endif
$(TARGET): main.cpp
g++ $(CXXFLAGS) $(LDFLAGS) -o $(TARGET) main.cpp
$(TARGET): main.cpp Makefile
g++ $(CXXFLAGS) main.cpp $(LDFLAGS) -o $(TARGET)
clean:
rm -f $(TARGET)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment