33 lines
701 B
Makefile
33 lines
701 B
Makefile
# $NetBSD: Makefile,v 1.10 1999/02/13 02:54:57 lukem Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/9/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= vfontedpr
|
|
SRCS= regexp.c vfontedpr.c
|
|
MAN= vgrind.1 vgrindefs.5
|
|
BINDIR= /usr/libexec
|
|
CLEANFILES+=vgrindefs.src.db
|
|
|
|
.if ${MKSHARE} != "no"
|
|
FILES= tmac.vgrind vgrindefs.src vgrindefs.src.db
|
|
FILESNAME_vgrindefs.src= vgrindefs
|
|
FILESNAME_vgrindefs.src.db= vgrindefs.db
|
|
FILESDIR= /usr/share/misc
|
|
FILESDIR_tmac.vgrind= /usr/share/tmac
|
|
.endif
|
|
|
|
SCRIPTS=vgrind.sh
|
|
SCRIPTSDIR=/usr/bin
|
|
|
|
all: vfontedpr vgrindefs.src.db
|
|
|
|
.if ${MKSHARE} != "no"
|
|
vgrindefs.src.db: vgrindefs.src
|
|
cap_mkdb -f vgrindefs.src ${.CURDIR}/vgrindefs.src
|
|
.else
|
|
vgrindefs.src.db:
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|