17 lines
398 B
Makefile
17 lines
398 B
Makefile
# from: @(#)Makefile 5.1.1.1 (Berkeley) 5/7/91
|
|
# $Id: Makefile,v 1.7 1996/10/18 05:52:26 thorpej Exp $
|
|
|
|
# Missing: connectives, words
|
|
|
|
FILES= README propernames web2 web2a
|
|
NOOBJ= noobj
|
|
LINKS= ${BINDIR}/dict/web2 ${BINDIR}/dict/words
|
|
|
|
all clean cleandir depend lint tags:
|
|
|
|
realinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
|
${DESTDIR}${BINDIR}/dict
|
|
|
|
.include <bsd.prog.mk>
|