Renamed the PLATFORM_LINUX_DESKTOP into PLATFORM_DESKTOP_LINUX.

This commit is contained in:
Miguel Lechón 2014-11-09 13:18:32 +01:00
parent db2ad9648d
commit a471b6197a
2 changed files with 6 additions and 6 deletions

View file

@ -24,7 +24,7 @@
#************************************************************************************************** #**************************************************************************************************
# define raylib platform (by default, compile for RPI) # 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 PLATFORM ?= PLATFORM_RPI
# define compiler: gcc for C program, define as g++ for C++ # define compiler: gcc for C program, define as g++ for C++
@ -49,7 +49,7 @@ else
endif endif
# define library paths containing required libs # define library paths containing required libs
ifeq ($(PLATFORM),PLATFORM_LINUX_DESKTOP) ifeq ($(PLATFORM),PLATFORM_DESKTOP_LINUX)
LFLAGS = -L. -L../src LFLAGS = -L. -L../src
else else
LFLAGS = -L. -L../src -L/opt/vc/lib LFLAGS = -L. -L../src -L/opt/vc/lib
@ -62,7 +62,7 @@ ifeq ($(PLATFORM),PLATFORM_RPI)
# NOTE: OpenAL Soft library should be installed (libopenal1 package) # NOTE: OpenAL Soft library should be installed (libopenal1 package)
LIBS = -lraylib -lGLESv2 -lEGL -lpthread -lrt -lm -lbcm_host -lopenal LIBS = -lraylib -lGLESv2 -lEGL -lpthread -lrt -lm -lbcm_host -lopenal
else else
ifeq ($(PLATFORM),PLATFORM_LINUX_DESKTOP) ifeq ($(PLATFORM),PLATFORM_DESKTOP_LINUX)
# libraries for Debian GNU/Linux desktop compiling # libraries for Debian GNU/Linux desktop compiling
# requires the following packages: # requires the following packages:
# libglfw3-dev libopenal-dev libglew-dev libegl1-mesa-dev # libglfw3-dev libopenal-dev libglew-dev libegl1-mesa-dev
@ -250,7 +250,7 @@ ifeq ($(PLATFORM),PLATFORM_RPI)
rm -f *.o rm -f *.o
# find . -executable -delete # find . -executable -delete
else else
ifeq ($(PLATFORM),PLATFORM_LINUX_DESKTOP) ifeq ($(PLATFORM),PLATFORM_DESKTOP_LINUX)
find . -type f -executable -delete find . -type f -executable -delete
rm -f *.o rm -f *.o
else else

View file

@ -24,7 +24,7 @@
#************************************************************************************************** #**************************************************************************************************
# define raylib platform (by default, compile for RPI) # 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 PLATFORM ?= PLATFORM_RPI
# define raylib graphics api depending on selected platform # define raylib graphics api depending on selected platform
@ -120,7 +120,7 @@ clean:
ifeq ($(PLATFORM),PLATFORM_RPI) ifeq ($(PLATFORM),PLATFORM_RPI)
rm -f *.o libraylib.a rm -f *.o libraylib.a
else else
ifeq ($(PLATFORM),PLATFORM_LINUX_DESKTOP) ifeq ($(PLATFORM),PLATFORM_DESKTOP_LINUX)
find . -type f -executable -delete find . -type f -executable -delete
rm -f *.o libraylib.a rm -f *.o libraylib.a
else else