From 8c1374c9b60955c4b4bd05bbf7eb9bc63676f2a3 Mon Sep 17 00:00:00 2001 From: karl Date: Tue, 8 Dec 2020 11:59:05 +0100 Subject: [PATCH] Remove old "performance" target from Makefile --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index fc6ba99..96b7283 100644 --- a/Makefile +++ b/Makefile @@ -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