X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mtp.git;a=blobdiff_plain;f=Makefile;h=edb6eb6a8edb30bbe40c7df9acc97dc58768b32d;hp=bc2a5e26dcf1b8cb9afb171659ab02747875ffa8;hb=f419bacb4b11f42f87e6e9bc9e8a4719499559f2;hpb=68d9c4f175f774d851a32f6069ad04b31924bfac diff --git a/Makefile b/Makefile index bc2a5e2..edb6eb6 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ -# mtp is the ``Multi Tracked Path'', an implementation of the -# k-shortest path algorithm for multi-target tracking. +# mtp is the ``Multi Tracked Paths'', an implementation of the +# k-shortest paths algorithm for multi-target tracking. # # Copyright (c) 2012 Idiap Research Institute, http://www.idiap.ch/ # Written by Francois Fleuret @@ -41,31 +41,33 @@ endif CXXFLAGS = -Wall $(OPTIMIZE_FLAG) $(PROFILE_FLAG) $(VERBOSE_FLAG) -all: mtp mtp_example - -TAGS: *.cc *.h - etags --members -l c++ *.cc *.h - -random-graph: \ - random-graph.o - $(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) +all: mtp mtp_example mtp_stress_test mtp: \ - path.o mtp_graph.o \ - tracker.o \ + path.o \ + mtp_graph.o \ + mtp_tracker.o \ mtp.o $(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) mtp_example: \ - path.o mtp_graph.o \ - tracker.o \ + path.o \ + mtp_graph.o \ + mtp_tracker.o \ 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 TAGS + \rm -f mtp mtp_example mtp_stress_test *.o Makefile.depend -include Makefile.depend