Some tweaks around

This commit is contained in:
raysan5
2016-11-17 12:55:30 +01:00
parent e23e73d9b2
commit bee283b12b
6 changed files with 25 additions and 19 deletions

View File

@ -41,6 +41,11 @@ SHARED ?= NO
# define NO to use OpenAL Soft as static library (or shared by default)
SHARED_OPENAL ?= NO
# on PLATFORM_WEB force OpenAL Soft shared library
ifeq ($(PLATFORM),PLATFORM_WEB)
SHARED_OPENAL ?= YES
endif
# determine if the file has root access (only for installing raylib)
# "whoami" prints the name of the user that calls him (so, if it is the root
# user, "whoami" prints "root").