From c3531e8e096cf5f1ecc723acf602e157995267da Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Fri, 1 Jun 2018 12:37:09 +0430 Subject: fixed a bug with default.lua. added the blueprint for the wasm interface to bruiser. --- bruiser/wasm/test/linker/makefile | 44 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 bruiser/wasm/test/linker/makefile (limited to 'bruiser/wasm/test/linker/makefile') diff --git a/bruiser/wasm/test/linker/makefile b/bruiser/wasm/test/linker/makefile new file mode 100644 index 0000000..5cffbcc --- /dev/null +++ b/bruiser/wasm/test/linker/makefile @@ -0,0 +1,44 @@ +TARGET=file0 +CC=clang +CC?=clang +CC_FLAGS= +CC_EXTRA?= +CC_FLAGS+=$(CC_EXTRA) + +SRCS=$(wildcard *.c) +WASM=$(patsubst %.c, %.wasm, $(wildcard *.c)) + +.DEFAULT:all + +.PHONY:all clean help + +all:$(TARGET) wasmforce + +depend:.depend + +.depend:$(SRCS) + rm -rf .depend + $(CC) -MM $(CC_FLAGS) $^ > ./.depend + +-include ./.depend + +%.wasm:%.c + ../../../../extra-tools/llvm-wasm $< + +wasmforce:$(WASM) + @echo forcing generation of wasm and wast + +.c.o: + $(CC) $(CC_FLAGS) -c $< -o $@ + +$(TARGET): $(TARGET).o + $(CC) $^ $(LD_FLAGS) -o $@ + +clean: + rm -f *.s *.wasm *.wast *.bc *.o *~ $(TARGET) + rm .depend + +help: + @echo "all is the default target" + @echo "there is delete." + @echo "there is clean." -- cgit v1.2.3