summaryrefslogtreecommitdiff
path: root/games/adventure
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-03-09 01:33:41 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-03-09 01:33:41 +0000
commit81fdb1c9d870ea7675764665befe8112a17eaa0a (patch)
tree4176753b70939297e9c4b7a50332f4d943bf6085 /games/adventure
parent6e59b9fd41c9f93eca7367bfbec065c8eddf8444 (diff)
Rudimentary support for compilation in a cross environment
Host tools will be compiled with HOSTCC instead of CC. Note, these are not complete in *any* way\!
Diffstat (limited to 'games/adventure')
-rw-r--r--games/adventure/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/games/adventure/Makefile b/games/adventure/Makefile
index 8c2df60cc20..db789789b10 100644
--- a/games/adventure/Makefile
+++ b/games/adventure/Makefile
@@ -1,3 +1,4 @@
+# $OpenBSD: Makefile,v 1.2 1996/03/09 01:33:25 niklas Exp $
# $NetBSD: Makefile,v 1.3 1995/03/21 12:04:53 cgd Exp $
# @(#)Makefile 8.1 (Berkeley) 6/12/93
@@ -12,6 +13,6 @@ data.c: glorkz setup
./setup ${.CURDIR}/glorkz > data.c
setup: setup.c hdr.h
- ${CC} -o setup ${.CURDIR}/setup.c
+ ${HOSTCC} -o setup ${.CURDIR}/setup.c
.include <bsd.prog.mk>