From 87c4841bc6793c3141399bce04ed1f218f7b49a4 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Sun, 16 Sep 2018 20:45:13 +0430 Subject: [skip ci] --- bruiser/makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'bruiser') diff --git a/bruiser/makefile b/bruiser/makefile index 6f5cea2..fe5e3db 100644 --- a/bruiser/makefile +++ b/bruiser/makefile @@ -132,12 +132,12 @@ linenoise.ocov: ./linenoise/linenoise.c $(CC) $(CC_FLAGS) $(COV_CXX) linenoise/linenoise.c -c -o linenoise.ocov ./autogen/wasm/ft/wasm.xml: - #if [[ ls -l ./autogen/wasm/ft/ | wc -l == 2 ]];then ./autogen/wasm/ft.sh;else :;fi - ./autogen/wasm/ft.sh + if [[ ls -l ./autogen/wasm/ft/ | wc -l == 2 ]];then ./autogen/wasm/ft.sh;else :;fi + #./autogen/wasm/ft.sh ./autogen/wasm/ltg/wasm.xml: - #if [[ ls -l ./autogen/wasm/ltg/ | wc -l == 2 ]];then ./autogen/wasm/ltg.sh;else :;fi - ./autogen/wasm/ltg.sh + if [[ ls -l ./autogen/wasm/ltg/ | wc -l == 2 ]];then ./autogen/wasm/ltg.sh;else :;fi + #./autogen/wasm/ltg.sh ./luatablegen/%.o:./luatablegen/%.c $(MAKE) -C luatablegen @@ -146,15 +146,19 @@ $(LIB_LUA): $(MAKE) -C lua-5.3.4/src linux $(FT_WASM_SO): ./autogen/wasm/ft/wasm.xml + @$(shell if [[ $$(ls -l ./autogen/wasm/ft/ | wc -l) == 4 ]];then ./autogen/wasm/ft.sh;else :;fi) $(MAKE) -C ./autogen/wasm/ft SO $(FT_WASM_A): ./autogen/wasm/ft/wasm.xml + @$(shell if [[ $$(ls -l ./autogen/wasm/ft/ | wc -l) == 4 ]];then ./autogen/wasm/ft.sh;else :;fi) $(MAKE) -C ./autogen/wasm/ft A $(LTG_WASM_SO): ./autogen/wasm/ltg/wasm.xml + @$(shell if [[ $$(ls -l ./autogen/wasm/ltg/ | wc -l) == 3 ]];then ./autogen/wasm/ltg.sh;else :;fi) $(MAKE) -C ./autogen/wasm/ltg SO $(LTG_WASM_A): ./autogen/wasm/ltg/wasm.xml + @$(shell if [[ $$(ls -l ./autogen/wasm/ltg/ | wc -l) == 3 ]];then ./autogen/wasm/ltg.sh;else :;fi) $(MAKE) -C ./autogen/wasm/ltg A %.odbg:%.cpp -- cgit v1.2.3