summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorjb <jb@FreeBSD.org>1998-02-19 07:34:46 +0000
committerjb <jb@FreeBSD.org>1998-02-19 07:34:46 +0000
commit6706b66d1a2ff1c3b69d987d481cee49fdfb7382 (patch)
tree7944143d248ad2ed316c8150be0428f550c26b7d /Makefile
parent728d7b8b1a4e5721c4dbf9486aa0c4bc7a0e786d (diff)
downloadFreeBSD-src-6706b66d1a2ff1c3b69d987d481cee49fdfb7382.zip
FreeBSD-src-6706b66d1a2ff1c3b69d987d481cee49fdfb7382.tar.gz
Change the bootstrap makefile inclusion to be general based on the
MACHINE. This lets me play with porting to m68k too. 8-) That is a good test for portability because MACHINE != MACHINE_ARCH and m68k is big endian.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index df0ee40..fd1f342 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,11 @@
#
-# $Id: Makefile,v 1.157 1998/02/06 09:52:24 adam Exp $
+# $Id: Makefile,v 1.158 1998/02/19 00:24:43 nate Exp $
#
-# While porting to the Alpha architecture include the bootstrap instead
+# While porting to the another architecture include the bootstrap instead
# of the normal build.
#
-.if ${MACHINE} == "alpha"
-.include "Makefile.alpha"
+.if exists(${.CURDIR}/Makefile.${MACHINE})
+.include "${.CURDIR}/Makefile.${MACHINE}"
.else
#
# Make command line options:
OpenPOWER on IntegriCloud