Remove the mtp_stress_test command, integrated what it did in mtp_example.
[mtp.git] / Makefile
index c502771..bb334d1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,7 @@ endif
 
 CXXFLAGS = -Wconversion -Wall $(OPTIMIZE_FLAG) $(PROFILE_FLAG) $(VERBOSE_FLAG)
 
-all: mtp mtp_example mtp_stress_test
+all: mtp mtp_example
 
 mtp: \
        path.o \
@@ -57,17 +57,10 @@ mtp_example: \
        mtp_example.o
        $(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS)
 
-mtp_stress_test: \
-       path.o \
-       mtp_graph.o \
-       mtp_tracker.o \
-       mtp_stress_test.o
-       $(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS)
-
 Makefile.depend: *.h *.cc Makefile
        $(CC) $(CXXFLAGS) -M *.cc > Makefile.depend
 
 clean:
-       \rm -f mtp mtp_example mtp_stress_test *.o Makefile.depend
+       \rm -f mtp mtp_example *.o Makefile.depend
 
 -include Makefile.depend