Removed the generation of TAGS, which may fail on most of the systems.
[mtp.git] / Makefile
index bc2a5e2..5f9d124 100644 (file)
--- 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 <francois.fleuret@idiap.ch>
@@ -43,22 +43,21 @@ 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)
 
 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)
 
@@ -66,6 +65,6 @@ 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 *.o Makefile.depend
 
 -include Makefile.depend