| Newsgroups |
perl.ponie.changes |
| Message-ID |
<[email protected]> |
Author: sky
Date: Tue Aug 19 07:58:02 2003
New Revision: 31
Modified:
trunk/Configure.pl
trunk/Makefile
Log:
fixup the makefile a little bit more
Modified: trunk/Configure.pl
==============================================================================
--- trunk/Configure.pl (original)
+++ trunk/Configure.pl Tue Aug 19 07:58:02 2003
@@ -12,6 +12,7 @@
foreach my $i (1..$configs) {
my $config_value = $Config{"config_arg$i"};
+ next if($config_value =~/thread/i);
next if($config_value eq '-Dmksymlinks');
next if($config_value =~/\-de/);
push @config_args, $config_value;
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Tue Aug 19 07:58:02 2003
@@ -19,8 +19,10 @@
cd perl && $(MAKE) perl
clean:
- cd parrot && $(MAKE) realclean
- cd perl && $(MAKE) realclean
+ cd parrot && $(MAKE) clean
+ cd perl && $(MAKE) clean
+ rm *~
+ rm -f lib
rm -f ponie
distclean:
@@ -31,6 +33,8 @@
cd perl && $(MAKE) realclean
rm -f perl/config.sh
rm -f perl/Policy.sh
+ rm *~
+ rm -f lib
rm -f ponie
install: