2016-07-16 18:31:54 +03:00
|
|
|
#******************************************************************************
|
2014-09-17 00:51:31 +04:00
|
|
|
#
|
2016-07-16 18:31:54 +03:00
|
|
|
# raylib makefile for desktop platforms, Raspberry Pi and HTML5 (emscripten)
|
2014-09-17 00:51:31 +04:00
|
|
|
#
|
2016-07-16 18:31:54 +03:00
|
|
|
# Copyright (c) 2014 Ramon Santamaria (@raysan5)
|
2014-09-17 00:51:31 +04:00
|
|
|
#
|
2016-07-16 18:31:54 +03:00
|
|
|
# This software is provided "as-is", without any express or implied warranty.
|
|
|
|
# In no event will the authors be held liable for any damages arising from
|
|
|
|
# the use of this software.
|
2014-09-17 00:51:31 +04:00
|
|
|
#
|
2016-07-16 18:31:54 +03:00
|
|
|
# Permission is granted to anyone to use this software for any purpose,
|
|
|
|
# including commercial applications, and to alter it and redistribute it
|
|
|
|
# freely, subject to the following restrictions:
|
2014-09-17 00:51:31 +04:00
|
|
|
#
|
2016-07-16 18:31:54 +03:00
|
|
|
# 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
# claim that you wrote the original software. If you use this software in a
|
|
|
|
# product, an acknowledgment in the product documentation would be
|
|
|
|
# appreciated but is not required.
|
2014-09-17 00:51:31 +04:00
|
|
|
#
|
2016-07-16 18:31:54 +03:00
|
|
|
# 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
# be misrepresented as being the original software.
|
2014-09-17 00:51:31 +04:00
|
|
|
#
|
2016-07-16 18:31:54 +03:00
|
|
|
# 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
#
|
|
|
|
#******************************************************************************
|
2014-09-17 00:51:31 +04:00
|
|
|
|
2016-07-16 19:38:17 +03:00
|
|
|
.PHONY: all clean install unistall
|
2016-04-06 14:21:29 +03:00
|
|
|
|
2014-12-31 20:03:32 +03:00
|
|
|
# define raylib platform to compile for
|
|
|
|
# possible platforms: PLATFORM_DESKTOP PLATFORM_RPI PLATFORM_WEB
|
2014-12-15 03:08:30 +03:00
|
|
|
PLATFORM ?= PLATFORM_DESKTOP
|
2014-09-17 00:51:31 +04:00
|
|
|
|
2016-07-16 19:38:17 +03:00
|
|
|
# determine if the file has root access (only for installing raylib)
|
2016-07-17 16:54:52 +03:00
|
|
|
# "whoami" prints the name of the user that calls him (so, if it is the root
|
|
|
|
# user, "whoami" prints "root").
|
2016-07-16 19:38:17 +03:00
|
|
|
ROOT = $(shell whoami)
|
|
|
|
|
2015-01-08 23:10:06 +03:00
|
|
|
# determine PLATFORM_OS in case PLATFORM_DESKTOP selected
|
2015-01-02 22:59:05 +03:00
|
|
|
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
|
2016-07-16 18:31:54 +03:00
|
|
|
# No uname.exe on MinGW!, but OS=Windows_NT on Windows!
|
|
|
|
# ifeq ($(UNAME),Msys) -> Windows
|
2015-01-02 22:59:05 +03:00
|
|
|
ifeq ($(OS),Windows_NT)
|
2015-01-08 23:10:06 +03:00
|
|
|
PLATFORM_OS=WINDOWS
|
2015-01-02 22:59:05 +03:00
|
|
|
else
|
2015-01-04 20:05:50 +03:00
|
|
|
UNAMEOS:=$(shell uname)
|
2015-01-02 22:59:05 +03:00
|
|
|
ifeq ($(UNAMEOS),Linux)
|
2015-01-08 23:10:06 +03:00
|
|
|
PLATFORM_OS=LINUX
|
2015-01-02 22:59:05 +03:00
|
|
|
else
|
|
|
|
ifeq ($(UNAMEOS),Darwin)
|
2015-01-08 23:10:06 +03:00
|
|
|
PLATFORM_OS=OSX
|
2015-01-02 22:59:05 +03:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-09-17 00:51:31 +04:00
|
|
|
# define raylib graphics api depending on selected platform
|
|
|
|
ifeq ($(PLATFORM),PLATFORM_RPI)
|
|
|
|
# define raylib graphics api to use (on RPI, OpenGL ES 2.0 must be used)
|
|
|
|
GRAPHICS = GRAPHICS_API_OPENGL_ES2
|
|
|
|
else
|
2016-07-16 15:58:53 +03:00
|
|
|
# define raylib graphics api to use (OpenGL 3.3 by default)
|
|
|
|
GRAPHICS ?= GRAPHICS_API_OPENGL_33
|
|
|
|
#GRAPHICS = GRAPHICS_API_OPENGL_11 # Uncomment to use OpenGL 1.1
|
2016-06-16 21:25:50 +03:00
|
|
|
#GRAPHICS = GRAPHICS_API_OPENGL_21 # Uncomment to use OpenGL 2.1
|
2014-09-17 00:51:31 +04:00
|
|
|
endif
|
2014-12-15 03:08:30 +03:00
|
|
|
ifeq ($(PLATFORM),PLATFORM_WEB)
|
|
|
|
GRAPHICS = GRAPHICS_API_OPENGL_ES2
|
|
|
|
endif
|
|
|
|
|
2014-09-17 00:51:31 +04:00
|
|
|
# NOTE: makefiles targets require tab indentation
|
|
|
|
|
|
|
|
# define compiler: gcc for C program, define as g++ for C++
|
2014-12-09 15:21:55 +03:00
|
|
|
ifeq ($(PLATFORM),PLATFORM_WEB)
|
2016-07-16 22:23:21 +03:00
|
|
|
CC = emcc # emscripten compiler
|
2014-12-09 15:21:55 +03:00
|
|
|
else
|
2016-07-16 22:23:21 +03:00
|
|
|
CC = gcc # default gcc compiler
|
2014-12-09 15:21:55 +03:00
|
|
|
endif
|
2014-09-17 00:51:31 +04:00
|
|
|
|
|
|
|
# define compiler flags:
|
2016-06-01 13:38:06 +03:00
|
|
|
# -O1 defines optimization level
|
|
|
|
# -Wall turns on most, but not all, compiler warnings
|
|
|
|
# -std=c99 defines C language mode (standard C from 1999 revision)
|
|
|
|
# -std=gnu99 defines C language mode (GNU C from 1999 revision)
|
2016-07-16 18:31:54 +03:00
|
|
|
# -fgnu89-inline declaring inline functions support (GCC optimized)
|
2016-06-01 13:38:06 +03:00
|
|
|
# -Wno-missing-braces ignore invalid warning (GCC bug 53119)
|
|
|
|
CFLAGS = -O1 -Wall -std=gnu99 -fgnu89-inline -Wno-missing-braces
|
2014-12-15 03:08:30 +03:00
|
|
|
|
2014-09-17 00:51:31 +04:00
|
|
|
#CFLAGSEXTRA = -Wextra -Wmissing-prototypes -Wstrict-prototypes
|
|
|
|
|
|
|
|
# define any directories containing required header files
|
|
|
|
ifeq ($(PLATFORM),PLATFORM_RPI)
|
2016-07-16 18:31:54 +03:00
|
|
|
INCLUDES = -I. -Iexternal -I/opt/vc/include \
|
|
|
|
-I/opt/vc/include/interface/vmcs_host/linux \
|
|
|
|
-I/opt/vc/include/interface/vcos/pthreads
|
2014-09-17 00:51:31 +04:00
|
|
|
else
|
2016-06-06 15:34:43 +03:00
|
|
|
# STB libraries and others
|
|
|
|
INCLUDES = -I. -Iexternal
|
|
|
|
# GLFW3 library
|
|
|
|
INCLUDES += -Iexternal/glfw3/include
|
|
|
|
# OpenAL Soft library
|
|
|
|
INCLUDES += -Iexternal/openal_soft/include
|
2014-09-17 00:51:31 +04:00
|
|
|
endif
|
|
|
|
|
2016-07-16 22:01:43 +03:00
|
|
|
# define all object files required with a wildcard
|
2016-07-17 16:54:52 +03:00
|
|
|
# The wildcard takes all files that finish with ".c", then it replaces the
|
|
|
|
# extentions with ".o", that are the object files.
|
2016-07-16 22:01:43 +03:00
|
|
|
OBJS = $(patsubst %.c, %.o, $(wildcard *.c))
|
2016-07-17 18:23:41 +03:00
|
|
|
OBJS += external/stb_vorbis.o
|
2016-07-17 18:18:34 +03:00
|
|
|
|
2016-07-16 18:31:54 +03:00
|
|
|
# typing 'make', it will invoke the first target on the file.
|
2016-07-16 19:38:17 +03:00
|
|
|
# The target 'all' compile raylib into static, web and dynamic library.
|
2016-07-17 18:18:34 +03:00
|
|
|
all: libraylib.a #libraylib.bc #libraylib.so
|
2016-07-16 22:01:43 +03:00
|
|
|
|
2016-07-17 18:18:34 +03:00
|
|
|
# compile raylib static library for desktop platforms.
|
2016-07-16 18:31:54 +03:00
|
|
|
libraylib.a : $(OBJS)
|
2016-07-16 22:23:21 +03:00
|
|
|
ar rcs $@ $(OBJS)
|
2016-07-16 19:38:17 +03:00
|
|
|
@echo "libraylib.a generated (static library)!"
|
2016-07-16 18:31:54 +03:00
|
|
|
|
2016-07-17 18:18:34 +03:00
|
|
|
# compile raylib for web.
|
2016-07-16 18:31:54 +03:00
|
|
|
libraylib.bc : $(OBJS)
|
2016-07-16 22:23:21 +03:00
|
|
|
emcc -O1 $(OBJS) -o $@
|
2016-07-16 19:38:17 +03:00
|
|
|
@echo "libraylib.bc generated (web version)!"
|
2014-09-17 00:51:31 +04:00
|
|
|
|
2016-07-17 18:23:41 +03:00
|
|
|
# compile all modules with relative prerequisites (header files of the
|
|
|
|
# project).
|
2016-07-17 18:18:34 +03:00
|
|
|
camera.o : camera.c camera.h raylib.h
|
|
|
|
$(CC) -c $< $(CFLAGS) $(INCLUDES)
|
|
|
|
|
|
|
|
core.o : core.c raylib.h rlgl.h utils.h raymath.h
|
|
|
|
$(CC) -c $< $(CFLAGS) $(INCLUDE) -D$(PLATFORM)
|
|
|
|
|
|
|
|
gestures.o : gestures.c gestures.h raylib.h
|
|
|
|
$(CC) -c $< $(CFLAGS) $(INCLUDE)
|
|
|
|
|
|
|
|
models.o : models.c raylib.h rlgl.h raymath.h
|
|
|
|
$(CC) -c $< $(CFLAGS) $(INCLUDE) -D$(PLATFORM)
|
|
|
|
|
|
|
|
rlgl.o : rlgl.c rlgl.h
|
|
|
|
$(CC) -c $< $(CFLAGS) $(INCLUDE) -D$(GRAPHICS)
|
|
|
|
|
|
|
|
shapes.o : shapes.c raylib.h rlgl.h
|
|
|
|
$(CC) -c $< $(CFLAGS) $(INCLUDE)
|
|
|
|
|
|
|
|
text.o : text.c raylib.h utils.h
|
|
|
|
$(CC) -c $< $(CFLAGS) $(INCLUDE)
|
|
|
|
|
|
|
|
textures.o : textures.c rlgl.h utils.h
|
|
|
|
$(CC) -c $< $(CFLAGS) $(INCLUDES) -D$(PLATFORM) -D$(GRAPHICS)
|
|
|
|
|
|
|
|
utils.o : utils.c utils.h
|
|
|
|
$(CC) -c $< $(CFLAGS) $(INCLUDES) -D$(PLATFORM)
|
|
|
|
|
2016-07-17 18:23:41 +03:00
|
|
|
audio.o : audio.c audio.h
|
|
|
|
$(CC) -c $< $(CFLAGS) $(INCLUDES) -D$(PLATFORM)
|
2015-05-11 01:15:46 +03:00
|
|
|
|
2016-06-06 15:34:43 +03:00
|
|
|
# compile stb_vorbis library
|
2016-07-17 18:18:34 +03:00
|
|
|
external/stb_vorbis.o: external/stb_vorbis.c external/stb_vorbis.h
|
|
|
|
$(CC) -c -o $@ $< -O1 $(INCLUDES) -D$(PLATFORM)
|
2016-06-06 15:34:43 +03:00
|
|
|
|
2016-07-16 19:38:17 +03:00
|
|
|
# It installs (copy) raylib dev files (static library and header) to standard
|
|
|
|
# directories on GNU/Linux platform.
|
|
|
|
# TODO: add other platforms.
|
|
|
|
install :
|
|
|
|
ifeq ($(ROOT),root)
|
2016-07-16 22:01:43 +03:00
|
|
|
ifeq ($(PLATFORM_OS),LINUX)
|
2016-07-16 19:38:17 +03:00
|
|
|
cp --update libraylib.a /usr/local/lib/libraylib.a
|
|
|
|
cp --update raylib.h /usr/local/include/raylib.h
|
|
|
|
@echo "raylib dev files installed/updated!"
|
|
|
|
else
|
|
|
|
@echo "This function works only on GNU/Linux systems"
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
@echo "Error: no root permissions"
|
|
|
|
endif
|
|
|
|
|
|
|
|
# it removes raylib dev files installed on the system.
|
|
|
|
# TODO: see 'install' target.
|
|
|
|
unistall :
|
|
|
|
ifeq ($(ROOT),root)
|
2016-07-16 22:01:43 +03:00
|
|
|
ifeq ($(PLATFORM_OS),LINUX)
|
2016-07-17 16:54:52 +03:00
|
|
|
# On GNU/Linux there are some standard directories that contain
|
|
|
|
# libraries and header files. These directory (/usr/local/lib and
|
|
|
|
# /usr/local/include/) are for libraries that are installed
|
|
|
|
# manually (without a package manager).
|
2016-07-16 19:38:17 +03:00
|
|
|
rm --force /usr/local/lib/libraylib.a
|
|
|
|
rm --force /usr/local/include/raylib.h
|
|
|
|
@echo "raylib dev files removed!"
|
|
|
|
else
|
|
|
|
@echo "This function works only on GNU/Linux systems"
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
@echo "Error: no root permissions"
|
|
|
|
endif
|
|
|
|
|
2014-09-17 00:51:31 +04:00
|
|
|
# clean everything
|
|
|
|
clean:
|
2016-07-16 21:24:14 +03:00
|
|
|
ifeq ($(PLATFORM_OS),WINDOWS)
|
|
|
|
del *.o libraylib.a libraylib.bc
|
|
|
|
else
|
|
|
|
rm -f *.o libraylib.a libraylib.bc
|
2014-09-17 00:51:31 +04:00
|
|
|
endif
|
2016-07-16 21:24:14 +03:00
|
|
|
@echo "removed all generated files!"
|