mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-28 18:06:20 +02:00
8 lines
313 B
Bash
Executable file
8 lines
313 B
Bash
Executable file
#!/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."
|