7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
(
cd "${KITSHROOTDIR}" || exit 1
autoconf; autoheader
rm -rf autom4te.cache
rm -f *~
./configure || exit 1
make boot.tcl.h
make zipvfs.tcl.h
make distclean
) || exit 1
rm -f tcl/patchscripts/dietlibc.sh
find . -name '.*.sw?' -type f | xargs rm -f
|
|
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
(
cd "${KITSHROOTDIR}" || exit 1
autoconf; autoheader
rm -rf autom4te.cache
rm -f *~
make -f Makefile.common.in boot.tcl.h zipvfs.tcl.h cvfs.tcl.h
make distclean
) || exit 1
rm -f tcl/patchscripts/dietlibc.sh
find . -name '.*.sw?' -type f | xargs rm -f
|