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.
This commit is contained in:
kingscallop 2021-06-05 21:55:19 +01:00 committed by GitHub
parent 8247e061f0
commit 1ab27e277b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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