############################################################################ # apps/interpreters/toywasm/Makefile # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. The # ASF licenses this file to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance with the # License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # ############################################################################ include $(APPDIR)/Make.defs PROGNAME = toywasm PRIORITY = $(CONFIG_INTERPRETERS_TOYWASM_PRIORITY) STACKSIZE = $(CONFIG_INTERPRETERS_TOYWASM_STACKSIZE) MODULE = $(CONFIG_INTERPRETERS_TOYWASM) # cli MAINSRC = main.c CSRCS += repl.c CSRCS += toywasm_config.c # lib CSRCS += bitmap.c CSRCS += cell.c CSRCS += context.c CSRCS += decode.c CSRCS += endian.c CSRCS += exec.c CSRCS += expr.c CSRCS += fileio.c CSRCS += host_instance.c CSRCS += idalloc.c CSRCS += import_object.c CSRCS += insn.c CSRCS += instance.c CSRCS += leb128.c CSRCS += module.c CSRCS += module_writer.c CSRCS += report.c CSRCS += timeutil.c CSRCS += type.c CSRCS += util.c CSRCS += validation.c CSRCS += vec.c CSRCS += wasi.c CSRCS += xlog.c # TOYWASM_ENABLE_WASM_THREADS CSRCS += lock.c CSRCS += waitlist.c # TOYWASM_ENABLE_WASI_THREADS CSRCS += wasi_threads.c CFLAGS += ${shell $(INCDIR) "$(CC)" $(APPDIR)/interpreters/toywasm/include} CFLAGS += ${shell $(INCDIR) "$(CC)" $(APPDIR)/interpreters/toywasm/toywasm/lib} TOYWASM_VERSION = 7c55fe4478e01ae651967f7c5d3fd3fa98a851ba TOYWASM_UNPACK = toywasm TOYWASM_TARBALL = $(TOYWASM_VERSION).zip TOYWASM_URL_BASE = https://github.com/yamt/toywasm/archive/ TOYWASM_URL = $(TOYWASM_URL_BASE)/$(TOYWASM_TARBALL) VPATH += $(TOYWASM_UNPACK)/cli VPATH += $(TOYWASM_UNPACK)/lib VPATH += src $(TOYWASM_TARBALL): $(Q) echo "Downloading $(TOYWASM_TARBALL)" $(Q) curl -O -L $(TOYWASM_URL) $(TOYWASM_UNPACK): $(TOYWASM_TARBALL) $(Q) echo "Unpacking $(TOYWASM_TARBALL) to $(TOYWASM_UNPACK)" $(Q) unzip $(TOYWASM_TARBALL) $(Q) mv toywasm-$(TOYWASM_VERSION) $(TOYWASM_UNPACK) $(Q) touch $(TOYWASM_UNPACK) # Download and unpack tarball if no git repo found ifeq ($(wildcard $(TOYWASM_UNPACK)/.git),) context:: $(TOYWASM_UNPACK) distclean:: $(call DELDIR, $(TOYWASM_UNPACK)) $(call DELFILE, $(TOYWASM_TARBALL)) endif include $(APPDIR)/Application.mk