mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 05:32:45 +01:00
pkg/tinycbor: initial import
This commit is contained in:
parent
d52186a169
commit
c4bfba7681
11
pkg/tinycbor/Makefile
Normal file
11
pkg/tinycbor/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
PKG_NAME=tinycbor
|
||||
PKG_URL=https://github.com/intel/tinycbor
|
||||
PKG_VERSION=v0.5.1
|
||||
PKG_LICENSE=MIT
|
||||
|
||||
.PHONY: all
|
||||
|
||||
all: git-download
|
||||
"$(MAKE)" -C $(PKG_BUILDDIR)/src -f $(CURDIR)/Makefile.tinycbor
|
||||
|
||||
include $(RIOTBASE)/pkg/pkg.mk
|
1
pkg/tinycbor/Makefile.include
Normal file
1
pkg/tinycbor/Makefile.include
Normal file
@ -0,0 +1 @@
|
||||
INCLUDES += -I$(PKGDIRBASE)/tinycbor/src
|
10
pkg/tinycbor/Makefile.tinycbor
Normal file
10
pkg/tinycbor/Makefile.tinycbor
Normal file
@ -0,0 +1,10 @@
|
||||
MODULE := tinycbor
|
||||
|
||||
SRC += cborerrorstrings.c
|
||||
SRC += cborencoder.c
|
||||
SRC += cborencoder_close_container_checked.c
|
||||
SRC += cborparser.c
|
||||
SRC += cborpretty.c
|
||||
SRC += cborvalidation.c
|
||||
|
||||
include $(RIOTBASE)/Makefile.base
|
Loading…
Reference in New Issue
Block a user