diff options
| author | [email protected] <[email protected]> | 2018-06-23 00:33:48 +0200 |
|---|---|---|
| committer | Martinfx <[email protected]> | 2018-06-23 17:02:07 +0200 |
| commit | 59ebe1b7c322232f38c98afa7d5df8fade9bc6f5 (patch) | |
| tree | 6f9ae3027eca97dc30acdd01a044b53cc9e4b2b0 /templates/advance_game | |
| parent | 965cc8ab6fab12fdab1ddd78b9a8e5eb146f3282 (diff) | |
| download | raylib-59ebe1b7c322232f38c98afa7d5df8fade9bc6f5.tar.gz raylib-59ebe1b7c322232f38c98afa7d5df8fade9bc6f5.zip | |
Added support OpenBSD, NetBSD, DragonFly
Diffstat (limited to 'templates/advance_game')
| -rw-r--r-- | templates/advance_game/Makefile | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/templates/advance_game/Makefile b/templates/advance_game/Makefile index 29818041..a2d41193 100644 --- a/templates/advance_game/Makefile +++ b/templates/advance_game/Makefile @@ -58,8 +58,17 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(UNAMEOS),Linux) PLATFORM_OS=LINUX endif - ifeq ($(UNAMEOS),FreeBSD) - PLATFORM_OS=FREEBSD + ifeq ($(UNAMEOS),FreeBSD) + PLATFORM_OS=BSD + endif + ifeq ($(UNAMEOS),OpenBSD) + PLATFORM_OS=BSD + endif + ifeq ($(UNAMEOS),NetBSD) + PLATFORM_OS=BSD + endif + ifeq ($(UNAMEOS),DragonFly) + PLATFORM_OS=BSD endif ifeq ($(UNAMEOS),Darwin) PLATFORM_OS=OSX @@ -97,8 +106,8 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),OSX) RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/osx endif - ifeq ($(PLATFORM_OS),FREEBSD) - RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/freebsd + ifeq ($(PLATFORM_OS),BSD) + RAYLIB_RELEASE_PATH = $(RAYLIB_PATH)/release/libs/bsd endif endif ifeq ($(PLATFORM),PLATFORM_RPI) @@ -117,8 +126,8 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) # OSX default compiler CC = clang endif - ifeq ($(PLATFORM_OS),FREEBSD) - # FreeBSD default compiler + ifeq ($(PLATFORM_OS),BSD) + # FreeBSD, OpenBSD, NetBSD, DragonFly default compiler CC = clang endif endif |
