88 lines
2.6 KiB
Makefile
88 lines
2.6 KiB
Makefile
############################################################################
|
|
# 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
|
|
|
|
# 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 += import_object.c
|
|
CSRCS += insn.c
|
|
CSRCS += instance.c
|
|
CSRCS += leb128.c
|
|
CSRCS += module.c
|
|
CSRCS += module_writer.c
|
|
CSRCS += report.c
|
|
CSRCS += type.c
|
|
CSRCS += util.c
|
|
CSRCS += validation.c
|
|
CSRCS += vec.c
|
|
CSRCS += wasi.c
|
|
CSRCS += xlog.c
|
|
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" $(APPDIR)/interpreters/toywasm/include}
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" $(APPDIR)/interpreters/toywasm/toywasm/lib}
|
|
|
|
TOYWASM_VERSION = 89465d57a8ad07a2e159711c92d3625bf66c41c7
|
|
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
|
|
|
|
$(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
|