You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2011/06/30 22:30:09 UTC

[lucy-commits] svn commit: r1141705 - in /incubator/lucy/trunk: charmonizer/base.POSIX.mk charmonizer/base.win.mk devel/bin/gen_charmonizer_makefiles.pl

Author: marvin
Date: Thu Jun 30 20:30:09 2011
New Revision: 1141705

URL: http://svn.apache.org/viewvc?rev=1141705&view=rev
Log:
Synchronize "CLEANABLES" between Unix and Windows Makefiles, eliminating
"core" from both and adding "*.pdb" to Unix (which will be a no-op).

Modified:
    incubator/lucy/trunk/charmonizer/base.POSIX.mk
    incubator/lucy/trunk/charmonizer/base.win.mk
    incubator/lucy/trunk/devel/bin/gen_charmonizer_makefiles.pl

Modified: incubator/lucy/trunk/charmonizer/base.POSIX.mk
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/charmonizer/base.POSIX.mk?rev=1141705&r1=1141704&r2=1141705&view=diff
==============================================================================
--- incubator/lucy/trunk/charmonizer/base.POSIX.mk (original)
+++ incubator/lucy/trunk/charmonizer/base.POSIX.mk Thu Jun 30 20:30:09 2011
@@ -16,7 +16,7 @@
 # limitations under the License.
 
 PROGNAME= charmonize$(EXEEXT)
-CLEANABLE= $(OBJS) $(PROGNAME) $(TEST_OBJS) $(TESTS) core
+CLEANABLE= $(OBJS) $(PROGNAME) $(TEST_OBJS) $(TESTS) *.pdb
 
 TESTS= TestDirManip$(EXEEXT) TestFuncMacro$(EXEEXT) TestHeaders$(EXEEXT) TestIntegers$(EXEEXT) TestLargeFiles$(EXEEXT) TestUnusedVars$(EXEEXT) TestVariadicMacros$(EXEEXT)
 

Modified: incubator/lucy/trunk/charmonizer/base.win.mk
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/charmonizer/base.win.mk?rev=1141705&r1=1141704&r2=1141705&view=diff
==============================================================================
--- incubator/lucy/trunk/charmonizer/base.win.mk (original)
+++ incubator/lucy/trunk/charmonizer/base.win.mk Thu Jun 30 20:30:09 2011
@@ -16,7 +16,7 @@
 # limitations under the License.
 
 PROGNAME= charmonize$(EXEEXT)
-CLEANABLE= $(OBJS) $(PROGNAME) $(TEST_OBJS) $(TESTS) core *.pdb
+CLEANABLE= $(OBJS) $(PROGNAME) $(TEST_OBJS) $(TESTS) *.pdb
 
 TESTS= TestDirManip$(EXEEXT) TestFuncMacro$(EXEEXT) TestHeaders$(EXEEXT) TestIntegers$(EXEEXT) TestLargeFiles$(EXEEXT) TestUnusedVars$(EXEEXT) TestVariadicMacros$(EXEEXT)
 

Modified: incubator/lucy/trunk/devel/bin/gen_charmonizer_makefiles.pl
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/devel/bin/gen_charmonizer_makefiles.pl?rev=1141705&r1=1141704&r2=1141705&view=diff
==============================================================================
--- incubator/lucy/trunk/devel/bin/gen_charmonizer_makefiles.pl (original)
+++ incubator/lucy/trunk/devel/bin/gen_charmonizer_makefiles.pl Thu Jun 30 20:30:09 2011
@@ -87,7 +87,7 @@ sub gen_makefile {
 #
 $license
 PROGNAME= charmonize\$(EXEEXT)
-CLEANABLE= \$(OBJS) \$(PROGNAME) \$(TEST_OBJS) \$(TESTS) core
+CLEANABLE= \$(OBJS) \$(PROGNAME) \$(TEST_OBJS) \$(TESTS) *.pdb
 
 TESTS= $args{test_execs}
 
@@ -122,7 +122,7 @@ sub gen_makefile_win {
 #
 $license
 PROGNAME= charmonize\$(EXEEXT)
-CLEANABLE= \$(OBJS) \$(PROGNAME) \$(TEST_OBJS) \$(TESTS) core *.pdb
+CLEANABLE= \$(OBJS) \$(PROGNAME) \$(TEST_OBJS) \$(TESTS) *.pdb
 
 TESTS= $args{test_execs}