summaryrefslogtreecommitdiffstats
path: root/boggle
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>1997-04-19 06:59:34 +0000
committerthorpej <thorpej@NetBSD.org>1997-04-19 06:59:34 +0000
commita81ba438a938f0f4261e85627df029fbcd3de073 (patch)
tree52df0d4ca6f558c61093ae53f9883c6dd85564c3 /boggle
parent11d38a5e4617fd29111bf1ff597367c9d234db14 (diff)
downloadbsdgames-darwin-a81ba438a938f0f4261e85627df029fbcd3de073.tar.gz
bsdgames-darwin-a81ba438a938f0f4261e85627df029fbcd3de073.tar.zst
bsdgames-darwin-a81ba438a938f0f4261e85627df029fbcd3de073.zip
Allow this to be cross-compiled.
Diffstat (limited to 'boggle')
-rw-r--r--boggle/mkdict/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/boggle/mkdict/Makefile b/boggle/mkdict/Makefile
index 12347f46..324fea5c 100644
--- a/boggle/mkdict/Makefile
+++ b/boggle/mkdict/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.2 1995/03/21 12:14:47 cgd Exp $
+# $NetBSD: Makefile,v 1.3 1997/04/19 07:08:39 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/11/93
-PROG= mkdict
-CFLAGS+=-I${.CURDIR}/../boggle
-NOMAN=noman
+HOST_CFLAGS+=-I${.CURDIR}/../boggle
-install:
+mkdict: ${.CURDIR}/mkdict.c ${.CURDIR}/../boggle/bog.h
+ ${HOST_COMPILE.c} ${.CURDIR}/mkdict.c
+ ${HOST_LINK.c} -o ${.TARGET} mkdict.o
-.include <bsd.prog.mk>
+.include <bsd.sys.mk>