diff --git a/examples/Makefile b/examples/Makefile index 0293314..57dbda8 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -31,6 +31,10 @@ PROJECT_FULL_NAME = c-krit/ferox PROJECT_PREFIX = ${_COLOR_BEGIN}${PROJECT_FULL_NAME}:${_COLOR_END} +# TODO: Edit these values to match your raylib installation path! +RAYLIB_INCLUDE_PATH ?= . +RAYLIB_LIBRARY_PATH ?= . + INCLUDE_PATH = include LIBRARY_PATH = ../lib SOURCE_PATH = src diff --git a/examples/Makefile.drm b/examples/Makefile.drm index 501745c..05e8071 100644 --- a/examples/Makefile.drm +++ b/examples/Makefile.drm @@ -23,8 +23,8 @@ .PHONY: all clean # TODO: Edit these values to match your raylib installation path! -RAYLIB_INCLUDE_PATH ?= -RAYLIB_LIBRARY_PATH ?= +RAYLIB_INCLUDE_PATH ?= . +RAYLIB_LIBRARY_PATH ?= . INCLUDE_PATH = include LIBRARY_PATH = ../lib