Home | History | Annotate | Line # | Download | only in mkdict
Makefile revision 1.5
      1  1.5  thorpej #	$NetBSD: Makefile,v 1.5 1997/04/28 23:46:19 thorpej 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.4  thorpej install:
     12  1.5  thorpej 
     13  1.5  thorpej # Override these rules for cross-compilation
     14  1.5  thorpej .c.o:
     15  1.5  thorpej 	${HOST_COMPILE.c} ${.IMPSRC}
     16  1.5  thorpej 
     17  1.5  thorpej ${PROG}: ${OBJS}
     18  1.5  thorpej 	${HOST_LINK.c} -o ${.TARGET} ${OBJS}
     19  1.1      jtc 
     20  1.4  thorpej .include <bsd.prog.mk>
     21