Some checks failed
Basic Checks / license-check (push) Has been cancelled
Basic Checks / include-check (push) Has been cancelled
Basic Checks / style-check (push) Has been cancelled
Basic Checks / docs-check (push) Has been cancelled
Basic Checks / python-tests (push) Has been cancelled
Basic Checks / pin-validation (push) Has been cancelled
Basic Checks / cmake-checks (push) Has been cancelled
Basic Checks / frozen-tools-check (push) Has been cancelled
Publish or Update docker image for head of branch / prepare-tags (push) Has been cancelled
Release or update docker image for a released mbed-os version / prepare-tags (push) Has been cancelled
Publish or Update docker image for head of branch / build-container (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/amd64) (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/arm64) (push) Has been cancelled
Publish or Update docker image for head of branch / deploy-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / build-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/amd64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/arm64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / deploy-container (push) Has been cancelled
Prune temporary docker images / prune-images (push) Has been cancelled
43 lines
894 B
Makefile
43 lines
894 B
Makefile
#
|
|
# Makefile for COAP library
|
|
#
|
|
|
|
# Define compiler toolchain with CC or PLATFORM variables
|
|
# Example (GCC toolchains, default $CC and $AR are used)
|
|
# make
|
|
#
|
|
# OR (Cross-compile GCC toolchain)
|
|
# make PLATFORM=arm-linux-gnueabi-
|
|
#
|
|
# OR (armcc/Keil)
|
|
# make CC=armcc AR=ArmAR
|
|
#
|
|
# OR (IAR-ARM)
|
|
# make CC=iccarm
|
|
|
|
LIB = libmbedcoap.a
|
|
SRCS := \
|
|
source/sn_coap_protocol.c \
|
|
source/sn_coap_parser.c \
|
|
source/sn_coap_header_check.c \
|
|
source/sn_coap_builder.c \
|
|
|
|
override CFLAGS += -DVERSION='"$(VERSION)"'
|
|
|
|
override CFLAGS += -Isource/include/
|
|
SERVLIB_DIR := ../libService
|
|
override CFLAGS += -I$(SERVLIB_DIR)/libService
|
|
override CFLAGS += -I.
|
|
|
|
include ../libService/toolchain_rules.mk
|
|
|
|
$(eval $(call generate_rules,$(LIB),$(SRCS)))
|
|
|
|
.PHONY: release
|
|
release:
|
|
7z a nsdl-c_$(VERSION).zip *.a *.lib include
|
|
|
|
.PHONY: deploy_to
|
|
deploy_to: all
|
|
tar --transform 's,^,libcoap/,' --append -f $(TO) *.a libcoap
|