diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2005-08-09 11:02:16 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2005-08-09 11:02:16 +0000 |
commit | e1be380510a42f13ce1fd55a29705aaf9e8c8da8 (patch) | |
tree | dc9f976601ea014e21597c569913e1ed12aca804 /externals/grill/flext/buildsys | |
parent | a111ce248be0420be382a9c5d644d394939cae82 (diff) |
don't use explicit so that STL can be used
on OSX use "strip -x" instead of -W,-l option to strip binaries
only strip release build
svn path=/trunk/; revision=3415
Diffstat (limited to 'externals/grill/flext/buildsys')
-rw-r--r-- | externals/grill/flext/buildsys/mac/gnumake-gcc-ext.inc | 7 | ||||
-rw-r--r-- | externals/grill/flext/buildsys/mac/gnumake-gcc-flext.inc | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/externals/grill/flext/buildsys/mac/gnumake-gcc-ext.inc b/externals/grill/flext/buildsys/mac/gnumake-gcc-ext.inc index a44ae23c..d5057ed3 100644 --- a/externals/grill/flext/buildsys/mac/gnumake-gcc-ext.inc +++ b/externals/grill/flext/buildsys/mac/gnumake-gcc-ext.inc @@ -52,6 +52,13 @@ $(TARGET) :: $(OBJPATH) $(TARGETPATH) $(TARGET) :: $(PRECOMDST) $(COBJS) $(CPPOBJS) $(CXX) $(LDFLAGS) $(LIBPATH) -o $@ $(COBJS) $(CPPOBJS) $(LIBS) +ifdef DEBUG +else +ifdef PROFILE +else + strip -x $@ +endif +endif chmod 755 $@ ############################################## diff --git a/externals/grill/flext/buildsys/mac/gnumake-gcc-flext.inc b/externals/grill/flext/buildsys/mac/gnumake-gcc-flext.inc index 2dad1981..6ed4990f 100644 --- a/externals/grill/flext/buildsys/mac/gnumake-gcc-flext.inc +++ b/externals/grill/flext/buildsys/mac/gnumake-gcc-flext.inc @@ -46,6 +46,13 @@ $(TARGET) :: $(OBJPATH) $(TARGETPATH) $(TARGET) :: $(PRECOMDST) $(COBJS) $(CPPOBJS) ifdef SHARED $(CXX) $(LDFLAGS) $(LIBPATH) -o $@ $(COBJS) $(CPPOBJS) $(LIBS) +ifdef DEBUG +else +ifdef PROFILE +else + strip -x $@ +endif +endif chmod 755 $@ else libtool -static -o $@ $(COBJS) $(CPPOBJS) |