Home | History | Annotate | Line # | Download | only in mkdict
Makefile revision 1.9
      1  1.9    lukem #	$NetBSD: Makefile,v 1.9 1999/02/13 02:54:20 lukem Exp $
      2  1.1      jtc #	@(#)Makefile	8.1 (Berkeley) 6/11/93
      3  1.1      jtc 
      4  1.4  thorpej PROG=	mkdict
      5  1.8    lukem HOST_CPPFLAGS+=-I${.CURDIR}/../boggle
      6  1.9    lukem MKMAN=	no
      7  1.5  thorpej 
      8  1.5  thorpej # XXX for "make depend"
      9  1.7    lukem CPPFLAGS+=-I${.CURDIR}/../boggle
     10  1.1      jtc 
     11  1.6  mycroft # only needed during build
     12  1.6  mycroft proginstall::
     13  1.5  thorpej 
     14  1.5  thorpej # Override these rules for cross-compilation
     15  1.5  thorpej .c.o:
     16  1.5  thorpej 	${HOST_COMPILE.c} ${.IMPSRC}
     17  1.5  thorpej 
     18  1.5  thorpej ${PROG}: ${OBJS}
     19  1.5  thorpej 	${HOST_LINK.c} -o ${.TARGET} ${OBJS}
     20  1.1      jtc 
     21  1.4  thorpej .include <bsd.prog.mk>
     22