summaryrefslogtreecommitdiff
path: root/ACE/include/makeinclude/platform_macosx_snowleopard.GNU
blob: 63aa60240ca7434445c0662810e08dad5a6f9690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# $Id$

ifeq ($(buildbits),32)
  FLAGS_C_CC += -m32
  LDFLAGS    += -m32
endif
ifeq ($(buildbits),64)
  FLAGS_C_CC += -m64
  LDFLAGS    += -m64
endif
ifeq ($(buildbits),universal)
  FLAGS_C_CC += -arch i386 -arch x86_64
  LDFLAGS    += -arch i386 -arch x86_64
endif

include $(ACE_ROOT)/include/makeinclude/platform_macosx_common.GNU