Home | History | Annotate | Line # | Download | only in mkdict
Makefile revision 1.6
      1  1.6  mycroft #	$NetBSD: Makefile,v 1.6 1997/05/07 15:59:08 mycroft Exp $
      2  1.1      jtc #	@(#)Makefile	8.1 (Berkeley) 6/11/93
      3  1.1      jtc 
      4  1.4  thorpej PROG=	mkdict
      5  1.5  thorpej HOST_CFLAGS+=-I${.CURDIR}/../boggle
      6  1.5  thorpej NOMAN=	noman
      7  1.5  thorpej 
      8  1.5  thorpej # XXX for "make depend"
      9  1.4  thorpej CFLAGS+=-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