diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-01-16 04:32:00 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-01-16 04:32:00 +0000 |
commit | b7621442c84d5d5f71808434ade0436fae9fb18e (patch) | |
tree | 301212edc2b51d5ecb611a58305d9151c92a6c18 /packages/darwin_app | |
parent | f51442d13a6f777688fdd870d7d1f76e85342b27 (diff) |
trying a more proper Makefile way to use environment variables, this should be inherited by Makefiles that are called from this one
svn path=/trunk/; revision=4413
Diffstat (limited to 'packages/darwin_app')
-rw-r--r-- | packages/darwin_app/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/darwin_app/Makefile b/packages/darwin_app/Makefile index 96fe7ff9..71b08cb8 100644 --- a/packages/darwin_app/Makefile +++ b/packages/darwin_app/Makefile @@ -1,8 +1,11 @@ current: darwin_app +# turn on weak linking and dlopen support +export MACOSX_DEPLOYMENT_TARGET = 10.3 + # needed to support weak linking of frameworks -MAKE = MACOSX_DEPLOYMENT_TARGET=10.3 make +#MAKE = MACOSX_DEPLOYMENT_TARGET=10.3 make CWD := $(shell pwd) BUILD_BASE = $(CWD)/build |