summaryrefslogtreecommitdiffhomepage
path: root/examples/Makefile
diff options
context:
space:
mode:
authorRay <[email protected]>2017-11-21 23:26:01 +0100
committerGitHub <[email protected]>2017-11-21 23:26:01 +0100
commit6624672bfa1281c8dd7606e040f6049c7319d6fb (patch)
tree69415186cd52dd191b8f91402121ad04d2823ee2 /examples/Makefile
parent6d317c7afe92424b5a5ec406b5c0952ac322aaa4 (diff)
parent398d793dbbc1ad5723f80706d9d091427be095c4 (diff)
downloadraylib-6624672bfa1281c8dd7606e040f6049c7319d6fb.tar.gz
raylib-6624672bfa1281c8dd7606e040f6049c7319d6fb.zip
Merge pull request #389 from Martinfx/master
Added clean to Makefile for FreeBSD
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile
index a3b3d9be..c5629090 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -363,6 +363,10 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
find . -type f -perm +ugo+x -delete
rm -f *.o
endif
+ ifeq ($(PLATFORM_OS),FREEBSD)
+ find . -type f -perm +ugo+x -delete
+ rm -f *.o
+ endif
endif
ifeq ($(PLATFORM),PLATFORM_RPI)
find . -type f -executable -delete