diff options
author | bloodstalker <thabogre@gmail.com> | 2018-09-16 16:15:13 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-09-16 16:15:13 +0000 |
commit | 87c4841bc6793c3141399bce04ed1f218f7b49a4 (patch) | |
tree | d3a69b7de40f11dd69b03ddd6d9a921192205d69 /bruiser/makefile | |
parent | WIP (diff) | |
download | mutator-87c4841bc6793c3141399bce04ed1f218f7b49a4.tar.gz mutator-87c4841bc6793c3141399bce04ed1f218f7b49a4.zip |
[skip ci]
Diffstat (limited to 'bruiser/makefile')
-rw-r--r-- | bruiser/makefile | 12 |
1 files changed, 8 insertions, 4 deletions
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 |