diff options
Diffstat (limited to 'externals/grill/flext/buildsys/mac')
-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) |