X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mtp.git;a=blobdiff_plain;f=Makefile;h=edb6eb6a8edb30bbe40c7df9acc97dc58768b32d;hp=aecad04e96e83fbe2cb8f608334e10d6ed21a4fc;hb=eded836910fd54dcc621cea82c758761f0e636f9;hpb=2cb38585fe7b08e1a13dd5418d89b152a4c6037b diff --git a/Makefile b/Makefile index aecad04..edb6eb6 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ endif CXXFLAGS = -Wall $(OPTIMIZE_FLAG) $(PROFILE_FLAG) $(VERBOSE_FLAG) -all: mtp mtp_example +all: mtp mtp_example mtp_stress_test mtp: \ path.o \ @@ -57,10 +57,17 @@ 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 *.o Makefile.depend + \rm -f mtp mtp_example mtp_stress_test *.o Makefile.depend -include Makefile.depend