mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
272 B
Makefile
16 lines
272 B
Makefile
PKG_NAME=cmsis-dsp
|
|
PKG_URL=https://github.com/gebart/CMSIS-DSP.git
|
|
PKG_VERSION=v1.4.5a-riot2
|
|
PKG_LICENSE=BSD-3-Clause
|
|
|
|
ifneq ($(RIOTBASE),)
|
|
include $(RIOTBASE)/Makefile.base
|
|
endif
|
|
|
|
.PHONY: all
|
|
|
|
all: git-download
|
|
$(MAKE) -C $(PKG_BUILDDIR)
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|