mirror of
https://github.com/buildwithparallel/mm-iot-sdk
synced 2026-08-10 21:27:58 -04:00
This commit introduces version 2.6.4 of the Morse Micro MM-IoT-SDK for microcontroller based platforms.
18 lines
457 B
Makefile
18 lines
457 B
Makefile
#
|
|
# Copyright 2023 Morse Micro
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
CORE_JSON_DIR = src/freertos-libs/coreJSON/source
|
|
|
|
# C files to be included while compiling
|
|
CORE_JSON_SRCS_C += core_json.c
|
|
|
|
# Header files for dependancy checking
|
|
CORE_JSON_SRCS_H += include/core_json.h
|
|
|
|
MMIOT_SRCS_C += $(addprefix $(CORE_JSON_DIR)/,$(CORE_JSON_SRCS_C))
|
|
MMIOT_SRCS_H += $(addprefix $(CORE_JSON_DIR)/,$(CORE_JSON_SRCS_H))
|
|
|
|
MMIOT_INCLUDES += $(CORE_JSON_DIR)/include
|