Removed the rule for random-graph.
[mtp.git] / Makefile
index e390a7d..aecad04 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -43,13 +43,6 @@ 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 \
@@ -68,6 +61,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