aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLelixSuper <emanuele98@openmailbox.org>2016-04-03 16:07:44 +0200
committerLelixSuper <emanuele98@openmailbox.org>2016-04-03 16:07:44 +0200
commita04a7b6ea53ed291a742baf764bd604d9fc7b70e (patch)
tree1730cf01b1e0fe42552c3c56383e0d4304fcd1ee /src
parentf2f4079411472e835263a7a59ed58dba380ecca6 (diff)
downloadraylib-a04a7b6ea53ed291a742baf764bd604d9fc7b70e.tar.gz
raylib-a04a7b6ea53ed291a742baf764bd604d9fc7b70e.zip
Fix cleaning recipies for GNU/Linux
Diffstat (limited to 'src')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 8aeb00d7..76dbfc67 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -165,7 +165,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
rm -f *.o libraylib.a
else
ifeq ($(PLATFORM_OS),LINUX)
- find -type f -executable | xargs file -i | grep -E 'x-object|x-archive|x-sharedlib|x-executable' | rev | cut -d ':' -f 2- | rev | xargs rm -f
+ rm -f *.o libraylib.a
else
del *.o libraylib.a
endif