5f10e8acea
added depend and tags targets (no-ops).
27 lines
353 B
Makefile
27 lines
353 B
Makefile
# %W% (Berkeley) %G%
|
|
|
|
TMACOWN?= bin
|
|
TMACGRP?= bin
|
|
TMACMODE?= 444
|
|
TMACDIR?= /usr/share/tmac
|
|
|
|
TMACS= tmac.X tmac.dvi tmac.pic tmac.ps tmac.psfig tmac.s tmac.tty
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
cleandir:
|
|
|
|
depend:
|
|
|
|
obj:
|
|
|
|
tags:
|
|
|
|
install:
|
|
-for t in $(TMACS); do \
|
|
install -c -o $(TMACOWN) -g $(TMACGRP) -m $(TMACMODE) \
|
|
$(.CURDIR)/$$t $(DESTDIR)$(TMACDIR)/$$t; \
|
|
done
|