mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
9 lines
313 B
Bash
9 lines
313 B
Bash
|
#!/bin/sh
|
||
|
if [ -f Makefile ]; then
|
||
|
echo "Making make distclean..."
|
||
|
make distclean
|
||
|
fi
|
||
|
echo "Removing autogenned files..."
|
||
|
rm -f config.guess config.sub configure install-sh missing mkinstalldirs Makefile.in ltmain.sh stamp-h.in */Makefile.in ltconfig stamp-h config.h.in* aclocal.m4 compile depcomp
|
||
|
echo "Done."
|