Home | History | Annotate | Line # | Download | only in mkindex
Makefile revision 1.3
      1  1.3  thorpej #	$NetBSD: Makefile,v 1.3 1997/04/28 23:46:20 thorpej Exp $
      2  1.1      jtc #	@(#)Makefile	8.1 (Berkeley) 6/11/93
      3  1.1      jtc 
      4  1.1      jtc PROG=	mkindex
      5  1.3  thorpej HOST_CFLAGS+=-I${.CURDIR}/../boggle
      6  1.3  thorpej NOMAN=	noman
      7  1.3  thorpej 
      8  1.3  thorpej # XXX for "make depend"
      9  1.1      jtc CFLAGS+=-I${.CURDIR}/../boggle
     10  1.1      jtc 
     11  1.1      jtc install:
     12  1.3  thorpej 
     13  1.3  thorpej # Override these rules for cross-compilation
     14  1.3  thorpej .c.o:
     15  1.3  thorpej 	${HOST_COMPILE.c} ${.IMPSRC}
     16  1.3  thorpej 
     17  1.3  thorpej ${PROG}: ${OBJS}
     18  1.3  thorpej 	${HOST_LINK.c} -o ${.TARGET} ${OBJS}
     19  1.1      jtc 
     20  1.1      jtc .include <bsd.prog.mk>
     21