mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ca5d13cc2a
Prepare for handling pkg state with files. So it requires having the path defined before declaring targets. In addition, it cleans up the old git-download target.
14 lines
428 B
Makefile
14 lines
428 B
Makefile
PKG_NAME=utensor
|
|
PKG_URL=https://github.com/uTensor/uTensor
|
|
PKG_VERSION=b22aa5cbc1ef1b3dd42a899b393a9b999afd1305
|
|
PKG_LICENSE=Apache2.0
|
|
|
|
PKG_BASEDIR = $(PKG_BUILDDIR)/src/uTensor
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
all:
|
|
"$(MAKE)" -C $(PKG_BASEDIR)/core -f $(CURDIR)/Makefile.$(PKG_NAME)
|
|
"$(MAKE)" -C $(PKG_BASEDIR)/util -f $(CURDIR)/Makefile.$(PKG_NAME).util
|
|
"$(MAKE)" -C $(PKG_BASEDIR)/ops -f $(CURDIR)/Makefile.$(PKG_NAME).ops
|