aboutsummaryrefslogtreecommitdiffstats
path: root/devel/p4/Makefile.inc
blob: ba68d1a19cb48642d910f8e056d99e550b6dd0e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Figure out what to install
.if ${ARCH} == amd64
. if ${OSVERSION} >= 700043
PLATFORM=   freebsd70x86_64
. elif ${OSVERSION} >= 600033
PLATFORM=   freebsd60x86_64
. else
IGNORE=     unsupported OS release, sorry
. endif

.elif ${ARCH} == i386
. if ${OSVERSION} >= 700043
PLATFORM=   freebsd70x86
. elif ${OSVERSION} >= 600033
PLATFORM=   freebsd60x86
. else
IGNORE=     unsupported OS release, sorry
. endif

.else
IGNORE=     unsupported OS release, sorry
.endif