From 844aab606a00f39086e9c1fca09fa7bdf5a9912e Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Tue, 17 Mar 1998 08:02:25 +0000 Subject: [PATCH] add tags target git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@654 57a11ea4-9604-0410-9ed3-97b8803252fd --- Makefile | 7 +++++++ Makefile.in | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/Makefile b/Makefile index 06dfbedd26..0c118ea22f 100644 --- a/Makefile +++ b/Makefile @@ -82,6 +82,13 @@ distclean: clean @cd lib; $(MAKE) distclean @cd src; $(MAKE) distclean + +tagsfiles := $(shell find -name "*.[ch]") + +TAGS: ${tagsfiles} + etags ${tagsfiles} + + install: $(TARGET) @mkdir -p $(PREFIX)/bin $(INSTALL) $(TARGET) $(PREFIX)/bin/$(TARGET) diff --git a/Makefile.in b/Makefile.in index 542c5110f2..db7655dd2f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -82,6 +82,13 @@ distclean: clean @cd lib; $(MAKE) distclean @cd src; $(MAKE) distclean + +tagsfiles := $(shell find -name "*.[ch]") + +TAGS: ${tagsfiles} + etags ${tagsfiles} + + install: $(TARGET) @mkdir -p $(PREFIX)/bin $(INSTALL) $(TARGET) $(PREFIX)/bin/$(TARGET)