mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 15:45:03 -04:00
294eff6021
* Greatly simplify and de-obfuscate the autogen and autoclean code. * Add a bunch of the autotools required files to the repository. This will give us consistency (a novel idea) across all builds, and allow for much more recent versions of config.guess and config.sub to be used.
35 lines
890 B
Bash
Executable File
35 lines
890 B
Bash
Executable File
#!/bin/sh -xu
|
|
|
|
[ -f Makefile ] && make distclean
|
|
rm -rf autom4te.cache
|
|
rm -rf {Makefile.in,Makefile}
|
|
rm -rf {config.h.in,config.h}
|
|
rm -rf config.status
|
|
rm -rf configure
|
|
rm -rf stamp*
|
|
rm -rf aclocal.m4
|
|
rm -rf compile
|
|
rm -rf libtool
|
|
|
|
rm -rf lib/libalpm/{Makefile.in,Makefile}
|
|
rm -rf src/util/{Makefile.in,Makefile}
|
|
rm -rf src/pacman/{Makefile.in,Makefile}
|
|
rm -rf scripts/{Makefile.in,Makefile}
|
|
rm -rf etc/{Makefile.in,Makefile}
|
|
rm -rf etc/pacman.d/{Makefile.in,Makefile}
|
|
rm -rf etc/abs/{Makefile.in,Makefile}
|
|
rm -rf pactest/{Makefile.in,Makefile}
|
|
rm -rf doc/{Makefile.in,Makefile}
|
|
rm -rf doc/html/*.html
|
|
rm -rf doc/man3/*.3
|
|
|
|
rm -rf src/pacman/po/{Makefile.in,Makefile}
|
|
rm -rf src/pacman/po/POTFILES
|
|
rm -rf src/pacman/po/stamp-po
|
|
rm -rf src/pacman/po/*.gmo
|
|
|
|
rm -rf lib/libalpm/po/{Makefile.in,Makefile}
|
|
rm -rf lib/libalpm/po/POTFILES
|
|
rm -rf lib/libalpm/po/stamp-po
|
|
rm -rf lib/libalpm/po/*.gmo
|