diff options
author | Mike Gorchak <mgorchak@blackberry.com> | 2021-03-10 22:18:28 -0500 |
---|---|---|
committer | Lenny Komow <lenny@lunarg.com> | 2021-04-06 14:52:51 -0600 |
commit | be295c597fe66e210de0aeb022dc80bd5fe1fa61 (patch) | |
tree | cb40cd12ce9488fa2a0a59f0761568281129fa91 | |
parent | 684c2a68736c9169c3eaaf1d2705f82872a203b9 (diff) | |
download | Vulkan-Loader-be295c597fe66e210de0aeb022dc80bd5fe1fa61.tar.gz Vulkan-Loader-be295c597fe66e210de0aeb022dc80bd5fe1fa61.tar.bz2 Vulkan-Loader-be295c597fe66e210de0aeb022dc80bd5fe1fa61.zip |
Add QNX platform makefiles.
-rw-r--r-- | build-qnx/nto/Makefile | 8 | ||||
-rw-r--r-- | build-qnx/nto/aarch64/Makefile | 8 | ||||
-rw-r--r-- | build-qnx/nto/aarch64/so.le/Makefile | 1 | ||||
-rw-r--r-- | build-qnx/nto/arm/Makefile | 8 | ||||
-rw-r--r-- | build-qnx/nto/arm/so.le.v7/Makefile | 1 | ||||
-rw-r--r-- | build-qnx/nto/x86_64/Makefile | 8 | ||||
-rw-r--r-- | build-qnx/nto/x86_64/so/Makefile | 1 |
7 files changed, 35 insertions, 0 deletions
diff --git a/build-qnx/nto/Makefile b/build-qnx/nto/Makefile new file mode 100644 index 00000000..0cc5eae2 --- /dev/null +++ b/build-qnx/nto/Makefile @@ -0,0 +1,8 @@ +LIST=CPU +ifndef QRECURSE +QRECURSE=recurse.mk +ifdef QCONFIG +QRDIR=$(dir $(QCONFIG)) +endif +endif +include $(QRDIR)$(QRECURSE) diff --git a/build-qnx/nto/aarch64/Makefile b/build-qnx/nto/aarch64/Makefile new file mode 100644 index 00000000..0e22650c --- /dev/null +++ b/build-qnx/nto/aarch64/Makefile @@ -0,0 +1,8 @@ +LIST=VARIANT +ifndef QRECURSE +QRECURSE=recurse.mk +ifdef QCONFIG +QRDIR=$(dir $(QCONFIG)) +endif +endif +include $(QRDIR)$(QRECURSE) diff --git a/build-qnx/nto/aarch64/so.le/Makefile b/build-qnx/nto/aarch64/so.le/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/build-qnx/nto/aarch64/so.le/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/build-qnx/nto/arm/Makefile b/build-qnx/nto/arm/Makefile new file mode 100644 index 00000000..0e22650c --- /dev/null +++ b/build-qnx/nto/arm/Makefile @@ -0,0 +1,8 @@ +LIST=VARIANT +ifndef QRECURSE +QRECURSE=recurse.mk +ifdef QCONFIG +QRDIR=$(dir $(QCONFIG)) +endif +endif +include $(QRDIR)$(QRECURSE) diff --git a/build-qnx/nto/arm/so.le.v7/Makefile b/build-qnx/nto/arm/so.le.v7/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/build-qnx/nto/arm/so.le.v7/Makefile @@ -0,0 +1 @@ +include ../../../common.mk diff --git a/build-qnx/nto/x86_64/Makefile b/build-qnx/nto/x86_64/Makefile new file mode 100644 index 00000000..0e22650c --- /dev/null +++ b/build-qnx/nto/x86_64/Makefile @@ -0,0 +1,8 @@ +LIST=VARIANT +ifndef QRECURSE +QRECURSE=recurse.mk +ifdef QCONFIG +QRDIR=$(dir $(QCONFIG)) +endif +endif +include $(QRDIR)$(QRECURSE) diff --git a/build-qnx/nto/x86_64/so/Makefile b/build-qnx/nto/x86_64/so/Makefile new file mode 100644 index 00000000..0f9d7b9a --- /dev/null +++ b/build-qnx/nto/x86_64/so/Makefile @@ -0,0 +1 @@ +include ../../../common.mk |