I’ve been playing around with modifying and compiling plugins, and I always have the dep and dist folders left over when I do a make install. Is there something I can add to the makefile to automatically clean these up so I don’t have to manually delete them before compiling again? Thanks for any tips
It might be easier to just run make clean
after running make install
. The make clean
command deletes the dist
directory.
I don’t see anything in my own dep
directory after make install
, so I’m not sure what to think about that.
You could automate by creating a script or batch file to run both commands. You could also add a command there to clean up dep
however you want.
I don’t know how experienced you are with scripting, so let us know if you could use some help. I will be happy to show you.
2 Likes