Update of /cvsroot/pure-data/externals/grill/flext/buildsys/mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22461/buildsys/mac
Modified Files: gnumake-gcc-ext.inc gnumake-gcc-flext.inc Log Message: 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
Index: gnumake-gcc-ext.inc =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/mac/gnumake-gcc-ext.inc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** gnumake-gcc-ext.inc 10 Apr 2005 22:22:39 -0000 1.4 --- gnumake-gcc-ext.inc 9 Aug 2005 11:02:15 -0000 1.5 *************** *** 53,56 **** --- 53,63 ---- $(TARGET) :: $(PRECOMDST) $(COBJS) $(CPPOBJS) $(CXX) $(LDFLAGS) $(LIBPATH) -o $@ $(COBJS) $(CPPOBJS) $(LIBS) + ifdef DEBUG + else + ifdef PROFILE + else + strip -x $@ + endif + endif chmod 755 $@
Index: gnumake-gcc-flext.inc =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/mac/gnumake-gcc-flext.inc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** gnumake-gcc-flext.inc 6 Jul 2005 16:08:03 -0000 1.6 --- gnumake-gcc-flext.inc 9 Aug 2005 11:02:16 -0000 1.7 *************** *** 47,50 **** --- 47,57 ---- ifdef SHARED $(CXX) $(LDFLAGS) $(LIBPATH) -o $@ $(COBJS) $(CPPOBJS) $(LIBS) + ifdef DEBUG + else + ifdef PROFILE + else + strip -x $@ + endif + endif chmod 755 $@ else