From: Francois Fleuret Date: Sun, 26 Aug 2012 11:41:49 +0000 (+0200) Subject: Removed the generation of TAGS, which may fail on most of the systems. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mtp.git;a=commitdiff_plain;h=62fdbfb1b57b7c0be6aa8e48654872315b0d1660 Removed the generation of TAGS, which may fail on most of the systems. --- diff --git a/Makefile b/Makefile index e390a7d..5f9d124 100644 --- a/Makefile +++ b/Makefile @@ -43,9 +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) @@ -68,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