summaryrefslogtreecommitdiffstats
path: root/boggle/mkdict/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'boggle/mkdict/Makefile')
-rw-r--r--boggle/mkdict/Makefile14
1 files changed, 12 insertions, 2 deletions
diff --git a/boggle/mkdict/Makefile b/boggle/mkdict/Makefile
index 02f2f584..6ac4d5f9 100644
--- a/boggle/mkdict/Makefile
+++ b/boggle/mkdict/Makefile
@@ -1,10 +1,20 @@
-# $NetBSD: Makefile,v 1.4 1997/04/19 07:13:49 thorpej Exp $
+# $NetBSD: Makefile,v 1.5 1997/04/28 23:46:19 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/11/93
PROG= mkdict
+HOST_CFLAGS+=-I${.CURDIR}/../boggle
+NOMAN= noman
+
+# XXX for "make depend"
CFLAGS+=-I${.CURDIR}/../boggle
-NOMAN=noman
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>