From 85a6e23d3bb2c5e516e8f7d8795dc85478148db8 Mon Sep 17 00:00:00 2001 From: RDR8 Date: Mon, 29 Jan 2018 12:08:14 +0000 Subject: [PATCH] Update Makefile Causes the example Makefile to prefer src/raylib.h over release/include/raylib.h. It fixes one example needing the newer header. Other effects unknown. No apparent other problems. --- examples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Makefile b/examples/Makefile index edcff8072..397a9cf06 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -165,7 +165,7 @@ endif # Define include paths for required headers # NOTE: Several external required libraries (stb and others) -INCLUDE_PATHS = -I. -I$(RAYLIB_PATH)/release/include -I$(RAYLIB_PATH)/src -I$(RAYLIB_PATH)/src/external +INCLUDE_PATHS = -I. -I$(RAYLIB_PATH)/src -I$(RAYLIB_PATH)/release/include -I$(RAYLIB_PATH)/src/external # Define additional directories containing required header files ifeq ($(PLATFORM),PLATFORM_RPI)