This is an automated email from the ASF dual-hosted git repository.
jerpelea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new 56a20a202 Move Wasm.mk to end of file since it need definition from
Application.mk itself.
56a20a202 is described below
commit 56a20a202d0e863a73cc7491f152b8d94365bceb
Author: Huang Qi <[email protected]>
AuthorDate: Tue Jul 18 18:17:33 2023 +0800
Move Wasm.mk to end of file since it need definition from Application.mk
itself.
Signed-off-by: Huang Qi <[email protected]>
---
Application.mk | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Application.mk b/Application.mk
index 315ac5810..1b72fcca9 100644
--- a/Application.mk
+++ b/Application.mk
@@ -18,9 +18,6 @@
#
############################################################################
-# Include Wasm specific definitions
-include $(APPDIR)/tools/Wasm.mk
-
# If this is an executable program (with MAINSRC), we must build it as a
# loadable module for the KERNEL build (always) or if the tristate module
# has the value "m"
@@ -285,3 +282,6 @@ distclean:: clean
$(call DELFILE, .depend)
-include Make.dep
+
+# Include Wasm specific definitions
+include $(APPDIR)/tools/Wasm.mk