mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-27 23:06:54 +00:00
Formerly compatMakefile.~23~
This commit is contained in:
parent
cfe0c54e8c
commit
b43df925f8
1 changed files with 6 additions and 2 deletions
|
@ -108,6 +108,10 @@ manext = l
|
||||||
# Install make setgid to this group so it can read /dev/kmem.
|
# Install make setgid to this group so it can read /dev/kmem.
|
||||||
group = 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 \
|
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 \
|
remake.o remote.o rule.o implicit.o default.o variable.o expand.o \
|
||||||
function.o vpath.o version.o $(ARCHIVES) $(GETOPT) $(ALLOCA) $(extras)
|
function.o vpath.o version.o $(ARCHIVES) $(GETOPT) $(ALLOCA) $(extras)
|
||||||
|
@ -159,9 +163,9 @@ force:
|
||||||
|
|
||||||
tagsrcs = $(srcs) remote-*.c *.h
|
tagsrcs = $(srcs) remote-*.c *.h
|
||||||
TAGS: $(tagsrcs)
|
TAGS: $(tagsrcs)
|
||||||
etags -tw $(tagsrcs)
|
$(ETAGS) $(tagsrcs)
|
||||||
tags: $(tagsrcs)
|
tags: $(tagsrcs)
|
||||||
ctags -tw $(tagsrcs)
|
$(CTAGS) $(tagsrcs)
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: $(bindir)/$(instname) $(mandir)/$(instname).$(manext)
|
install: $(bindir)/$(instname) $(mandir)/$(instname).$(manext)
|
||||||
|
|
Loading…
Reference in a new issue