summaryrefslogtreecommitdiff
path: root/compatMakefile
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1992-05-11 19:20:28 +0000
committerRoland McGrath <roland@redhat.com>1992-05-11 19:20:28 +0000
commitb43df925f8846e9f6470fb14cb1f933c8685073b (patch)
treef5ae056de739edbd859a18c9a58d299c65fcc9d8 /compatMakefile
parentcfe0c54e8c3908cb32ef032310a39198b9da6d3a (diff)
downloadgunmake-b43df925f8846e9f6470fb14cb1f933c8685073b.tar.gz
Formerly compatMakefile.~23~
Diffstat (limited to 'compatMakefile')
-rw-r--r--compatMakefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/compatMakefile b/compatMakefile
index 2e83b0f..690f355 100644
--- a/compatMakefile
+++ b/compatMakefile
@@ -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)