From 92e80984a443156b01a2218e6ce3b084594a0d72 Mon Sep 17 00:00:00 2001 From: Walter Perdan Date: Sun, 1 Dec 2024 18:58:45 +0100 Subject: [PATCH] formatting files --- tools/makem.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/tools/makem.js b/tools/makem.js index 2f3d20c..13fc8e7 100644 --- a/tools/makem.js +++ b/tools/makem.js @@ -127,7 +127,7 @@ const SINGLE_FILE_FLAG = " -s SINGLE_FILE=1 "; const BIND_FLAG = " --bind "; const EXPORTED_FUNCTIONS = - ' -s EXPORTED_FUNCTIONS=["_malloc,_free"] -s EXPORTED_RUNTIME_METHODS=["FS,stringToUTF8,lengthBytesUTF8"] '; + ' -s EXPORTED_FUNCTIONS=["_malloc,_free"] -s EXPORTED_RUNTIME_METHODS=["FS,stringToUTF8,lengthBytesUTF8"] '; /* DEBUG FLAGS */ let DEBUG_FLAGS = " -g "; @@ -176,7 +176,17 @@ function clean_builds() { } const compile_arlib = format( - EMCC + " " + INCLUDES + " " + ar_sources.join(" ") + FLAGS + " " + ZLIB_FLAG + " " + DEFINES + " -r -o {OUTPUT_PATH}libar.o ", + EMCC + + " " + + INCLUDES + + " " + + ar_sources.join(" ") + + FLAGS + + " " + + ZLIB_FLAG + + " " + + DEFINES + + " -r -o {OUTPUT_PATH}libar.o ", OUTPUT_PATH, );