? docs/Makefile.in
Index: Configure.pl
===================================================================
RCS file: /cvs/public/parrot/Configure.pl,v
retrieving revision 1.62
diff -c -r1.62 Configure.pl
*** Configure.pl	1 Jan 2002 18:20:32 -0000	1.62
--- Configure.pl	1 Jan 2002 19:30:27 -0000
***************
*** 140,145 ****
--- 140,146 ----
      test_prog     => 'test_parrot' . $Config{_exe},
      debugging     => $opt_debugging,
      rm_f          => 'rm -f',
+     rm_rf         => 'rm -rf',
      stacklow      => '(~0xfff)U',
      intlow        => '(~0xfff)U',
      numlow        => '(~0xfff)U',
***************
*** 446,451 ****
--- 447,453 ----
  
  buildfile("Makefile");
  buildfile("classes/Makefile");
+ buildfile("docs/Makefile");
  buildfile("languages/Makefile");
  buildfile("languages/jako/Makefile");
  buildfile("languages/miniperl/Makefile");
Index: Makefile.in
===================================================================
RCS file: /cvs/public/parrot/Makefile.in,v
retrieving revision 1.95
diff -c -r1.95 Makefile.in
*** Makefile.in	31 Dec 2001 22:37:26 -0000	1.95
--- Makefile.in	1 Jan 2002 19:30:28 -0000
***************
*** 2,8 ****
  SO = .so
  A = .a
  RM_F = ${rm_f}
! RM_RF = ${rm_f} -r
  AR_CRS = ar crs
  
  INC=include/parrot
--- 2,8 ----
  SO = .so
  A = .a
  RM_F = ${rm_f}
! RM_RF = ${rm_rf}
  AR_CRS = ar crs
  
  INC=include/parrot
Index: docs/.cvsignore
===================================================================
RCS file: /cvs/public/parrot/docs/.cvsignore,v
retrieving revision 1.2
diff -c -r1.2 .cvsignore
*** docs/.cvsignore	14 Oct 2001 20:54:57 -0000	1.2
--- docs/.cvsignore	1 Jan 2002 19:30:28 -0000
***************
*** 1,3 ****
--- 1,4 ----
+ Makefile
  core_ops.pod
  packfile-c.pod
  packfile-perl.pod
Index: hints/mswin32.pl
===================================================================
RCS file: /cvs/public/parrot/hints/mswin32.pl,v
retrieving revision 1.5
diff -c -r1.5 mswin32.pl
*** hints/mswin32.pl	31 Dec 2001 21:34:26 -0000	1.5
--- hints/mswin32.pl	1 Jan 2002 19:30:28 -0000
***************
*** 3,8 ****
--- 3,9 ----
  	my $is_mingw = grep { $c{cc} eq $_ } ( qw(gcc gcc.exe) );
  
  	$c{rm_f} = '$(PERL) -MExtUtils::Command -e rm_f';
+ 	$c{rm_rf} = '$(PERL) -MExtUtils::Command -e rm_rf';
  
  	if( $is_msvc ) {
  		$c{o} = '.obj';
Index: languages/jako/Makefile.in
===================================================================
RCS file: /cvs/public/parrot/languages/jako/Makefile.in,v
retrieving revision 1.4
diff -c -r1.4 Makefile.in
*** languages/jako/Makefile.in	15 Dec 2001 01:39:41 -0000	1.4
--- languages/jako/Makefile.in	1 Jan 2002 19:30:28 -0000
***************
*** 10,15 ****
--- 10,18 ----
  JAKOC=./jakoc
  INTERP=../../${test_prog}
  
+ PERL = ${perl}
+ RM_F = ${rm_f}
+ 
  .SUFFIXES: .jako .pasm .pbc
  
  .jako.pasm:
***************
*** 68,74 ****
  #
  
  clean:
! 	rm -f *.pasm *.list *.pbc
  
  over:
  	@$(MAKE) clean
--- 71,77 ----
  #
  
  clean:
! 	$(RM_F) *.pasm *.list *.pbc
  
  over:
  	@$(MAKE) clean
Index: languages/scheme/Makefile.in
===================================================================
RCS file: /cvs/public/parrot/languages/scheme/Makefile.in,v
retrieving revision 1.1
diff -c -r1.1 Makefile.in
*** languages/scheme/Makefile.in	15 Dec 2001 01:39:41 -0000	1.1
--- languages/scheme/Makefile.in	1 Jan 2002 19:30:29 -0000
***************
*** 10,15 ****
--- 10,18 ----
  SCHEMEC=./schemec
  INTERP=./${test_prog}
  
+ PERL = ${perl}
+ RM_F = ${rm_f}
+ 
  #
  # Default target:
  #
***************
*** 56,62 ****
  all: test.pbc and.pbc foo.pbc
  
  clean:
! 	rm -f \
  foo.pasm foo.pbc \
  t/*/*.pasm \
  t/*/*.pbc \
--- 59,65 ----
  all: test.pbc and.pbc foo.pbc
  
  clean:
! 	$(RM_F) \
  foo.pasm foo.pbc \
  t/*/*.pasm \
  t/*/*.pbc \
