mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-13 22:08:45 +00:00
59 lines
1.8 KiB
Makefile
59 lines
1.8 KiB
Makefile
WASMER_DIR:=$(realpath $(WASMER_DIR))
|
|
|
|
$(info Using provided WASMER_DIR=$(WASMER_DIR))
|
|
|
|
ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
|
|
|
|
ifeq (,$(wildcard $(WASMER_DIR)/bin/wasmer))
|
|
CFLAGS = -g -I$(ROOT_DIR)/ -I$(WASMER_DIR)/include
|
|
LDFLAGS = -Wl,-rpath,$(WASMER_DIR)/lib
|
|
LDLIBS = -L$(WASMER_DIR)/lib -lwasmer
|
|
else
|
|
CFLAGS = -g -I$(ROOT_DIR)/ -I$(shell $(WASMER_DIR)/bin/wasmer config --includedir)
|
|
LDFLAGS = -Wl,-rpath,$(shell $(WASMER_DIR)/bin/wasmer config --libdir)
|
|
LDLIBS = $(shell $(WASMER_DIR)/bin/wasmer config --libs)
|
|
endif
|
|
|
|
$(info * CFLAGS: $(CFLAGS))
|
|
$(info * LDFLAGS: $(LDFLAGS))
|
|
$(info * LDLIBS: $(LDLIBS))
|
|
|
|
CAPI_BASE_TESTS = \
|
|
wasm-c-api/example/callback wasm-c-api/example/global wasm-c-api/example/hello \
|
|
wasm-c-api/example/memory wasm-c-api/example/reflect wasm-c-api/example/serialize \
|
|
wasm-c-api/example/start wasm-c-api/example/trap wasm-c-api/example/multi
|
|
|
|
CAPI_BASE_TESTS_NOT_WORKING = \
|
|
wasm-c-api/example/finalize wasm-c-api/example/hostref wasm-c-api/example/threads \
|
|
wasm-c-api/example/table
|
|
|
|
ALL = $(CAPI_BASE_TESTS) $(CAPI_WASMER_TESTS)
|
|
|
|
test-%: %.o
|
|
|
|
.PHONY: all
|
|
all: $(ALL)
|
|
|
|
.PHONY: test-capi-wasmer
|
|
.SILENT: test-capi-wasmer
|
|
test-capi-wasmer: $(CAPI_WASMER_TESTS)
|
|
set -o errexit; \
|
|
$(foreach example,$?,echo Running \"$(example)\" example; cd $(shell dirname $(realpath $(example))) && ./$(shell basename $(example)); echo;)
|
|
|
|
.PHONY: test-capi-base
|
|
.SILENT: test-capi-base
|
|
test-capi-base: $(CAPI_BASE_TESTS)
|
|
set -o errexit; \
|
|
$(foreach example,$?,echo Running \"$(example)\" example; cd $(shell dirname $(realpath $(example))) && ./$(shell basename $(example)); echo;)
|
|
|
|
.PHONY: test-capi-base
|
|
.SILENT: test-capi-base
|
|
test-capi: test-capi-base test-capi-wasmer
|
|
|
|
test: test-capi
|
|
|
|
.SILENT: clean
|
|
.PHONY: clean
|
|
clean:
|
|
$(foreach file,$(ALL),rm -f $(file).o $(file))
|