comparison test/Makefile @ 3960:f08d439fab8c

7089790: integrate bsd-port changes Reviewed-by: kvn, twisti, jrose Contributed-by: Kurt Miller <kurt@intricatesoftware.com>, Greg Lewis <glewis@eyesbeyond.com>, Jung-uk Kim <jkim@freebsd.org>, Christos Zoulas <christos@zoulas.com>, Landon Fuller <landonf@plausible.coop>, The FreeBSD Foundation <board@freebsdfoundation.org>, Michael Franz <mvfranz@gmail.com>, Roger Hoover <rhoover@apple.com>, Alexander Strange <astrange@apple.com>
author never
date Sun, 25 Sep 2011 16:03:29 -0700
parents 0a8e0d4345b3
children 6fd81579526f
comparison
equal deleted inserted replaced
3959:eda6988c0d81 3960:f08d439fab8c
36 ARCH=i586 36 ARCH=i586
37 endif 37 endif
38 endif 38 endif
39 ifeq ($(OSNAME), Linux) 39 ifeq ($(OSNAME), Linux)
40 PLATFORM = linux 40 PLATFORM = linux
41 SLASH_JAVA = /java
42 ARCH = $(shell uname -m)
43 ifeq ($(ARCH), i386)
44 ARCH = i586
45 endif
46 endif
47 ifeq ($(OSNAME), Darwin)
48 PLATFORM = bsd
49 SLASH_JAVA = /java
50 ARCH = $(shell uname -m)
51 ifeq ($(ARCH), i386)
52 ARCH = i586
53 endif
54 endif
55 ifeq ($(findstring BSD,$(OSNAME)), BSD)
56 PLATFORM = bsd
41 SLASH_JAVA = /java 57 SLASH_JAVA = /java
42 ARCH = $(shell uname -m) 58 ARCH = $(shell uname -m)
43 ifeq ($(ARCH), i386) 59 ifeq ($(ARCH), i386)
44 ARCH = i586 60 ARCH = i586
45 endif 61 endif