summaryrefslogtreecommitdiffstats
path: root/boggle/mkindex/Makefile
blob: ce063f94e60e04087dda8d97ec9aac9e83aacc7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#	$NetBSD: Makefile,v 1.3 1997/04/28 23:46:20 thorpej Exp $
#	@(#)Makefile	8.1 (Berkeley) 6/11/93

PROG=	mkindex
HOST_CFLAGS+=-I${.CURDIR}/../boggle
NOMAN=	noman

# XXX for "make depend"
CFLAGS+=-I${.CURDIR}/../boggle

install:

# Override these rules for cross-compilation
.c.o:
	${HOST_COMPILE.c} ${.IMPSRC}

${PROG}: ${OBJS}
	${HOST_LINK.c} -o ${.TARGET} ${OBJS}

.include <bsd.prog.mk>