Author: leo
Date: Sat May 7 03:28:52 2005
New Revision: 7997
Modified:
trunk/config/gen/makefiles/dynclasses.in
trunk/config/gen/makefiles/lisp.in
trunk/config/gen/makefiles/root.in
Log:
[perl #35304] [PATCH] fix make 'realclean'
a few files were left behind during 'make realclean', this patch gets
rid of them.
Courtesy of Jerry Gay <[EMAIL PROTECTED]>
Modified: trunk/config/gen/makefiles/dynclasses.in
==============================================================================
--- trunk/config/gen/makefiles/dynclasses.in (original)
+++ trunk/config/gen/makefiles/dynclasses.in Sat May 7 03:28:52 2005
@@ -58,7 +58,7 @@
cd .. ; perl -Ilib t/harness t/dynclass/*.t
testclean :
- $(RM_F) ../t/dynclass/*.imc ../t/dynclass/*.pbc
+ $(RM_F) ../t/dynclass/*.pir ../t/dynclass/*.pbc
dynext-clean :
# win32 import library
Modified: trunk/config/gen/makefiles/lisp.in
==============================================================================
--- trunk/config/gen/makefiles/lisp.in (original)
+++ trunk/config/gen/makefiles/lisp.in Sat May 7 03:28:52 2005
@@ -12,3 +12,6 @@
clean:
$(RM_F) core *.pbc *~
+
+realclean: clean
+ $(RM_F) Makefile
Modified: trunk/config/gen/makefiles/root.in
==============================================================================
--- trunk/config/gen/makefiles/root.in (original)
+++ trunk/config/gen/makefiles/root.in Sat May 7 03:28:52 2005
@@ -156,6 +156,7 @@
languages/befunge/Makefile \
languages/bf/Makefile \
languages/ook/Makefile \
+ languages/lisp/Makefile \
languages/m4/Makefile \
languages/perl6/Makefile \
languages/urm/Makefile \