From 56a20a202d0e863a73cc7491f152b8d94365bceb Mon Sep 17 00:00:00 2001 From: Huang Qi Date: Tue, 18 Jul 2023 18:17:33 +0800 Subject: [PATCH] Move Wasm.mk to end of file since it need definition from Application.mk itself. Signed-off-by: Huang Qi --- 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