aboutsummaryrefslogtreecommitdiff
path: root/src/makefile
diff options
context:
space:
mode:
authorMiguel Lechón <miguel.lechon@gmail.com>2014-11-09 13:18:32 +0100
committerMiguel Lechón <miguel.lechon@gmail.com>2014-11-09 13:18:32 +0100
commita471b6197aec1911cf26bcc891767bca22cb9dab (patch)
treefd2d32a5a8740e59e05481d6fb9b15d78d027bf4 /src/makefile
parentdb2ad9648d7fa2c9b378f2dcbfaa8be372f7e957 (diff)
downloadraylib-a471b6197aec1911cf26bcc891767bca22cb9dab.tar.gz
raylib-a471b6197aec1911cf26bcc891767bca22cb9dab.zip
Renamed the PLATFORM_LINUX_DESKTOP into PLATFORM_DESKTOP_LINUX.
Diffstat (limited to 'src/makefile')
-rw-r--r--src/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile b/src/makefile
index c5688a49..0c078e86 100644
--- a/src/makefile
+++ b/src/makefile
@@ -24,7 +24,7 @@
#**************************************************************************************************
# define raylib platform (by default, compile for RPI)
-# Other possible platforms: PLATFORM_DESKTOP PLATFORM_LINUX_DESKTOP
+# Other possible platforms: PLATFORM_DESKTOP PLATFORM_DESKTOP_LINUX
PLATFORM ?= PLATFORM_RPI
# define raylib graphics api depending on selected platform
@@ -120,7 +120,7 @@ clean:
ifeq ($(PLATFORM),PLATFORM_RPI)
rm -f *.o libraylib.a
else
-ifeq ($(PLATFORM),PLATFORM_LINUX_DESKTOP)
+ifeq ($(PLATFORM),PLATFORM_DESKTOP_LINUX)
find . -type f -executable -delete
rm -f *.o libraylib.a
else