From d77859cf10869b5fc33187769040ba2feb9dcade Mon Sep 17 00:00:00 2001 From: Misha Holtz <36575242+mnholtz@users.noreply.github.com> Date: Wed, 20 Sep 2023 13:37:07 -0700 Subject: [PATCH] fix makefile echo --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 739d678..cedb6c0 100644 --- a/Makefile +++ b/Makefile @@ -9,11 +9,14 @@ # ~/emsdk-portable/emsdk activate latest # source ~/emsdk-portable/emsdk_env.sh -all: jq.asm.js jq.asm.min.js jq.wasm.js jq.wasm.min.js jq.wasm.wasm jq.asm.bundle.js jq.asm.bundle.min.js +all: echoPath jq.asm.js jq.asm.min.js jq.wasm.js jq.wasm.min.js jq.wasm.wasm jq.asm.bundle.js jq.asm.bundle.min.js clean: rm jq.* +echoPath: + @echo $(PATH) + jq/configure: .gitmodules git submodule update --init cd jq && \ @@ -22,7 +25,7 @@ jq/configure: .gitmodules autoreconf -fi jq/jq.o: jq/configure - cd jq && echo $PATH && echo "\n\n\n" && \ + cd jq && \ emconfigure ./configure --disable-maintainer-mode --with-oniguruma=builtin && \ make clean && \ env CCFLAGS=-O2 emmake make LDFLAGS=-all-static CCFLAGS=-O2 -j4 && \