Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

autoreconf cleanup

Tags:

autotools

I use autoreconf --install to generate configure scripts, etc for my project. Is there a "cleanup" option, or some other easy method to clean up the files generated by autoreconf? With the Makefiles generated by configure, I can do a make distclean, but I would like to further clean my directory by removing the Makefile.in, etc files.

like image 236
Chris Avatar asked Oct 09 '12 15:10

Chris


1 Answers

That command is called make maintainer-clean. It will remove nearly everything that autoreconf generates, with a few exceptions. Two notable exceptions are configure and Makefile.in.

like image 128
ptomato Avatar answered Oct 22 '22 00:10

ptomato