a824498e2d
Use SYMLINKS instead of an ad hoc rule for installing words -> web2. Don't override the install target; doing so just breaks things like SYMLINKS. Don't override the correct defaults for the all, clean, depend, lint and tags targets. Don't add a null rule to the cleandepend target.
14 lines
307 B
Makefile
14 lines
307 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
# XXX MISSING: connectives words
|
|
FILES= README propernames web2 web2a
|
|
SYMLINKS= web2 ${BINDIR}/dict/words
|
|
NOOBJ= noobj
|
|
|
|
beforeinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${SHAREMODE} ${FILES} \
|
|
${DESTDIR}${BINDIR}/dict
|
|
|
|
.include <bsd.prog.mk>
|