2013-08-10 17:46:30 +02:00
|
|
|
# Created by: David Naylor (dbn@FreeBSD.org)
|
2013-03-25 21:08:45 +01:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2013-08-10 17:46:30 +02:00
|
|
|
# Special bootstrapper to allow:
|
|
|
|
# - i386 specific port to be slave to ${PORTSDIR}/emulators/wine-devel
|
|
|
|
# - amd64 specific port to be normal port (based on binary package)
|
2013-03-25 21:08:45 +01:00
|
|
|
|
2013-08-10 17:46:30 +02:00
|
|
|
.if !defined(ARCH)
|
|
|
|
ARCH!= uname -p
|
|
|
|
.endif
|
2013-04-09 07:47:54 +02:00
|
|
|
|
2013-08-10 17:46:30 +02:00
|
|
|
.if ${ARCH} == i386
|
|
|
|
.include "${.CURDIR}/Makefile.i386"
|
|
|
|
.else
|
|
|
|
.include "${.CURDIR}/Makefile.inc"
|
|
|
|
.endif
|