12 lines
244 B
Bash
Executable file
12 lines
244 B
Bash
Executable file
#! /bin/sh
|
|
# $NetBSD: cleanup,v 1.9 2009/05/17 23:44:48 billc Exp $
|
|
|
|
wrkdir=${1:-work}
|
|
|
|
rm -f -r "$wrkdir"
|
|
rm -f Makefile.inc mk.conf.example */config.cache
|
|
|
|
# Also clean up from people who run testbootstrap
|
|
rm -rf .db pkg
|
|
rm -f BOOTSTRAP.LOG
|
|
|