blob: ade7f66978b2bd78e84c10aa36d21c88dc6a0414 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# platform_macosx.GNU,v 4.6 2001/08/14 18:57:28 bala Exp
# platform_macosx.GNU
# support for Mac OS X 10.1
CC = cc
CXX = c++
CFLAGS += -Wall -Wpointer-arith -pipe
CCFLAGS += $(CFLAGS) -fimplicit-templates
DCFLAGS += -g
DLD = libtool
LD = $(CXX)
LDFLAGS += -flat_namespace
LIBS += -lcc_dynamic -lstdc++ -lSystem $(ACELIB)
OCFLAGS += -O3
RANLIB = ranlib
SOEXT = dylib
SOFLAGS = -dynamic
SOBUILD = -o $(VSHDIR)$*.dylib $<
|