From 1ab27e277bee30211744ad35b64fb5b1fac6cf4d Mon Sep 17 00:00:00 2001 From: kingscallop <54776947+kingscallop@users.noreply.github.com> Date: Sat, 5 Jun 2021 21:55:19 +0100 Subject: [PATCH] Fix hardcoded bgfx dir from include paths in makefiles (#2532) Only these four makefiles had these hardcoded paths. All other makefiles don't specify the bgfx dir name. --- examples/common/debugdraw/makefile | 2 +- examples/common/ps/makefile | 2 +- tools/geometryv/makefile | 2 +- tools/texturev/makefile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/common/debugdraw/makefile b/examples/common/debugdraw/makefile index a76254b01..88ff40d28 100644 --- a/examples/common/debugdraw/makefile +++ b/examples/common/debugdraw/makefile @@ -3,7 +3,7 @@ # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause # -include ../../../../bgfx/scripts/shader-embeded.mk +include ../../../scripts/shader-embeded.mk rebuild: @make -s --no-print-directory clean all diff --git a/examples/common/ps/makefile b/examples/common/ps/makefile index a76254b01..88ff40d28 100644 --- a/examples/common/ps/makefile +++ b/examples/common/ps/makefile @@ -3,7 +3,7 @@ # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause # -include ../../../../bgfx/scripts/shader-embeded.mk +include ../../../scripts/shader-embeded.mk rebuild: @make -s --no-print-directory clean all diff --git a/tools/geometryv/makefile b/tools/geometryv/makefile index 77d05f9ad..6eb416e17 100644 --- a/tools/geometryv/makefile +++ b/tools/geometryv/makefile @@ -3,4 +3,4 @@ # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause # -include ../../../bgfx/scripts/shader-embeded.mk +include ../../scripts/shader-embeded.mk diff --git a/tools/texturev/makefile b/tools/texturev/makefile index 8d822f772..ee5a9f5a7 100644 --- a/tools/texturev/makefile +++ b/tools/texturev/makefile @@ -3,4 +3,4 @@ # License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause # -include ../../../bgfx/scripts/shader-embeded.mk +include ../../scripts/shader-embeded.mk