Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to undo ./configure command

Is there a command that removes all the files created by the ./configure command of libxml2??

Thanks Samuel

like image 278
user357498 Avatar asked Feb 25 '26 15:02

user357498


1 Answers

try make clean or make distclean

or just re-run ./configure, if the problem is that you ran it with the wrong switches previously.

like image 158
user357513 Avatar answered Feb 28 '26 22:02

user357513