diff options
Diffstat (limited to 'examples/makefile')
| -rw-r--r-- | examples/makefile | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/examples/makefile b/examples/makefile index b9cdd15d..d2656888 100644 --- a/examples/makefile +++ b/examples/makefile @@ -66,6 +66,14 @@ else LFLAGS = -L. -L../src endif +# define library paths containing required libs +ifeq ($(PLATFORM),PLATFORM_DESKTOP_OSX) + LFLAGS = -L. -L../src -L../external/glfw3/lib/ -I../external/openal_soft/lib/ +else + LFLAGS = -L. -L../src +endif + + # define any libraries to link into executable # if you want to link libraries (libname.so or libname.a), use the -lname ifeq ($(PLATFORM),PLATFORM_RPI) @@ -79,14 +87,21 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP_LINUX) # libglfw3-dev libopenal-dev libglew-dev libegl1-mesa-dev LIBS = -lraylib -lglfw -lGLEW -lGL -lopenal else +ifeq ($(PLATFORM),PLATFORM_DESKTOP_OSX) + # libraries for OS X 10.9 desktop compiling + # requires the following packages: + # libglfw3-dev libopenal-dev libglew-dev libegl1-mesa-dev + LIBS = -lraylib -lglfw -framework OpenGL -framework OpenAl -framework Cocoa +else +ifeq ($(PLATFORM),PLATFORM_WEB) + LIBS = ../src/libraylib.bc +else # libraries for Windows desktop compiling # NOTE: GLFW3 and OpenAL Soft libraries should be installed LIBS = -lraylib -lglfw3 -lglew32 -lopengl32 -lopenal32 -lgdi32 endif endif - -ifeq ($(PLATFORM),PLATFORM_WEB) - LIBS = ../src/libraylib.bc +endif endif # define additional parameters and flags for windows @@ -273,6 +288,9 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP_LINUX) find . -type f -executable -delete rm -f *.o else +ifeq ($(PLATFORM),PLATFORM_DESKTOP_OSX) + rm -f *.o +else ifeq ($(PLATFORM),PLATFORM_WEB) del *.o *.html *.js else @@ -280,6 +298,7 @@ else endif endif endif +endif @echo Cleaning done # instead of defining every module one by one, we can define a pattern |
