]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Formerly compatMakefile.~23~
authorRoland McGrath <roland@redhat.com>
Mon, 11 May 1992 19:20:28 +0000 (19:20 +0000)
committerRoland McGrath <roland@redhat.com>
Mon, 11 May 1992 19:20:28 +0000 (19:20 +0000)
compatMakefile

index 2e83b0fcafbf250ff7a0225acb0a8d7f74165b29..690f3554ebd2da868f6be54b2e2ffb4ef9bc211d 100644 (file)
@@ -108,6 +108,10 @@ manext = l
 # Install make setgid to this group so it can read /dev/kmem.
 group = kmem
 
+# Programs to make tags files.
+ETAGS = etags -tw
+CTAGS = ctags -tw
+
 objs = commands.o job.o dir.o file.o load.o misc.o main.o read.o \
        remake.o remote.o rule.o implicit.o default.o variable.o expand.o \
        function.o vpath.o version.o $(ARCHIVES) $(GETOPT) $(ALLOCA) $(extras)
@@ -159,9 +163,9 @@ force:
 
 tagsrcs = $(srcs) remote-*.c *.h
 TAGS: $(tagsrcs)
-       etags -tw $(tagsrcs)
+       $(ETAGS) $(tagsrcs)
 tags: $(tagsrcs)
-       ctags -tw $(tagsrcs)
+       $(CTAGS) $(tagsrcs)
 
 .PHONY: install
 install: $(bindir)/$(instname) $(mandir)/$(instname).$(manext)