Remove old "performance" target from Makefile

This commit is contained in:
karl 2020-12-08 11:59:05 +01:00
parent 8041535b51
commit 8c1374c9b6

View File

@ -12,9 +12,6 @@ quickhull: main.o Quickhull.h Point.h Line.h Triangle.h Display.o
# link with sfml libs; -lsfml-network -lsfml-audio currently not needed
$(CXX) $(CXXFLAGS) -o quickhull main.o Quickhull.h Point.h Line.h Triangle.h Display.o $(SFMLFLAGS)
performance: performance.cpp Display.o
$(CXX) $(CXXFLAGS) -o performance Display.o performance.cpp $(SFMLFLAGS)
main.o: main.cpp
$(CXX) $(CXXFLAGS) -c main.cpp