Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add 'configclean' target to handle cleanup from Configure.pl.
  • Loading branch information
pmichaud committed Aug 31, 2012
1 parent 30f8f6b commit 0cb73f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Configure.pl
Expand Up @@ -138,7 +138,7 @@
{
no warnings;
print "Cleaning up ...\n";
if (open my $CLEAN, '-|', "$make clean") {
if (open my $CLEAN, '-|', "$make configclean") {
my @slurp = <$CLEAN>;
close($CLEAN);
}
Expand Down
5 changes: 5 additions & 0 deletions tools/build/Makefile.in
Expand Up @@ -123,6 +123,11 @@ realclean: clean
cd $(NQP_DIR) && $(MAKE) realclean
cd $(PARROT_DIR) && $(MAKE) realclean

configclean:
$(RM_F) $(CLEANUPS)
cd $(NQP_DIR) && $(MAKE) clean
cd $(PARROT_DIR) && $(MAKE) clean

testclean:


Expand Down

0 comments on commit 0cb73f2

Please sign in to comment.