raysan5 / raygui

A simple and easy-to-use immediate-mode gui library
zlib License
3.36k stars 289 forks source link

make clean on linux not working properly #334

Closed n67094 closed 7 months ago

n67094 commented 11 months ago

I tried to add -delete just like that (c.f below) to get the right result, but others part of the command is complaining, as you can imagine by looking at it ^^.

find -type f -executable -delete | xargs file -i | grep -E 'x-object|x-archive|x-sharedlib|x-executable' | rev | cut -d ':' -f 2- | rev | xargs rm -fv

raysan5 commented 11 months ago

@n67094 make clean is actually trickier than expected, had many issues with it trying to make it multiplatform...

anstropleuton commented 11 months ago

But it works properly on raylib's examples...?

n67094 commented 11 months ago

yes raylib's example only use those 2 commands

find . -type f -executable -delete
rm -fv *.o
raysan5 commented 7 months ago

I'm afraid I'm just closing this issue...