Home | History | Annotate | Line # | Download | only in vgrind
Makefile revision 1.12.2.1
      1 #	$NetBSD: Makefile,v 1.12.2.1 2002/05/30 23:50:57 tv Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 6/9/93
      3 
      4 .include <bsd.own.mk>
      5 
      6 PROG=	vfontedpr
      7 SRCS=	regexp.c vfontedpr.c
      8 MAN=	vgrind.1 vgrindefs.5
      9 BINDIR=	/usr/libexec
     10 CLEANFILES+=vgrindefs.src.db
     11 
     12 .if ${MKSHARE} != "no"
     13 FILES=				tmac.vgrind vgrindefs.src vgrindefs.src.db
     14 FILESNAME_vgrindefs.src=	vgrindefs
     15 FILESNAME_vgrindefs.src.db=	vgrindefs.db
     16 FILESDIR=			/usr/share/misc
     17 FILESDIR_tmac.vgrind=		/usr/share/tmac
     18 .endif
     19 
     20 SCRIPTS=	vgrind.sh
     21 SCRIPTSDIR=	/usr/bin
     22 
     23 CAP_MKDB?=	cap_mkdb
     24 
     25 realall: vfontedpr vgrindefs.src.db
     26 
     27 # there's no issue of endianness as DB keys are ascii strings.
     28 .if ${MKSHARE} != "no"
     29 vgrindefs.src.db: vgrindefs.src
     30 	${CAP_MKDB} -f vgrindefs.src ${.CURDIR}/vgrindefs.src
     31 .else
     32 vgrindefs.src.db:
     33 .endif
     34 
     35 .include <bsd.prog.mk>
     36