diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-03-09 01:33:41 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-03-09 01:33:41 +0000 |
commit | 81fdb1c9d870ea7675764665befe8112a17eaa0a (patch) | |
tree | 4176753b70939297e9c4b7a50332f4d943bf6085 /usr.bin | |
parent | 6e59b9fd41c9f93eca7367bfbec065c8eddf8444 (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 'usr.bin')
-rw-r--r-- | usr.bin/tn3270/tools/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/tn3270/tools/Makefile.inc | 4 | ||||
-rw-r--r-- | usr.bin/tn3270/tools/mkastods/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/tn3270/tools/mkastosc/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/tn3270/tools/mkdctype/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/tn3270/tools/mkdstoas/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/tn3270/tools/mkhits/Makefile | 2 |
7 files changed, 10 insertions, 6 deletions
diff --git a/usr.bin/tn3270/tools/Makefile b/usr.bin/tn3270/tools/Makefile index 9cb42d1e8e4..1233e3be51b 100644 --- a/usr.bin/tn3270/tools/Makefile +++ b/usr.bin/tn3270/tools/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1995/10/18 08:46:23 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 1996/03/09 01:33:33 niklas Exp $ SUBDIR = mkhits mkastosc mkastods mkdstoas mkdctype diff --git a/usr.bin/tn3270/tools/Makefile.inc b/usr.bin/tn3270/tools/Makefile.inc new file mode 100644 index 00000000000..944d3ec4e01 --- /dev/null +++ b/usr.bin/tn3270/tools/Makefile.inc @@ -0,0 +1,4 @@ +# $OpenBSD: Makefile.inc,v 1.1 1996/03/09 01:33:34 niklas Exp $ + +CC=${HOSTCC} +DESTDIR=/ diff --git a/usr.bin/tn3270/tools/mkastods/Makefile b/usr.bin/tn3270/tools/mkastods/Makefile index 3a78845d9a2..0b08a73c0e0 100644 --- a/usr.bin/tn3270/tools/mkastods/Makefile +++ b/usr.bin/tn3270/tools/mkastods/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1995/10/18 08:46:23 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 1996/03/09 01:33:35 niklas Exp $ CFLAGS += -I${.CURDIR}/.. -I. diff --git a/usr.bin/tn3270/tools/mkastosc/Makefile b/usr.bin/tn3270/tools/mkastosc/Makefile index 7e38f3415fa..bbcebf63cd7 100644 --- a/usr.bin/tn3270/tools/mkastosc/Makefile +++ b/usr.bin/tn3270/tools/mkastosc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1995/10/18 08:46:24 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 1996/03/09 01:33:36 niklas Exp $ CFLAGS += -I${.CURDIR}/../mkhits -I${.CURDIR}/.. -I. diff --git a/usr.bin/tn3270/tools/mkdctype/Makefile b/usr.bin/tn3270/tools/mkdctype/Makefile index a7e927c5c65..420aba6a74d 100644 --- a/usr.bin/tn3270/tools/mkdctype/Makefile +++ b/usr.bin/tn3270/tools/mkdctype/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1995/10/18 08:46:24 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 1996/03/09 01:33:37 niklas Exp $ CFLAGS += -I${.CURDIR}/.. -I. diff --git a/usr.bin/tn3270/tools/mkdstoas/Makefile b/usr.bin/tn3270/tools/mkdstoas/Makefile index 1f924fc7fad..89bc021b2ac 100644 --- a/usr.bin/tn3270/tools/mkdstoas/Makefile +++ b/usr.bin/tn3270/tools/mkdstoas/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1995/10/18 08:46:24 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 1996/03/09 01:33:39 niklas Exp $ CFLAGS += -I${.CURDIR}/.. -I. diff --git a/usr.bin/tn3270/tools/mkhits/Makefile b/usr.bin/tn3270/tools/mkhits/Makefile index bbfe2b1196a..54febaeb332 100644 --- a/usr.bin/tn3270/tools/mkhits/Makefile +++ b/usr.bin/tn3270/tools/mkhits/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1995/10/18 08:46:25 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 1996/03/09 01:33:40 niklas Exp $ CFLAGS += -I${.CURDIR}/.. -I. |