Makefile
687 Bytes
#
# WiSmart Applications Makefile
#
# Copyright 2012 eConais S.A
#
# Set the sdk root folder
SDK_ROOT = ../../
PROJECT_OUT = smartcities
USER_SRC = main.c httpClient.c callbacks.c module.c sensors.c json.c i2c.c buffer.c
USER_INCDIR = include/
# if you need to add build Defines options add to USER_DEFS define
#USER_DEFS += -D
# select SDK's version:
SDK_VERSION = SDK_REV_9_2
# select the MCU type e.g. STM32F1, STM32F4
PLAT = STM32F1
# select the MCU flash/ram size e.g. MCU_386K_64K, MCU_768K_96K, MCU_1M_96K
MCU_SIZE = MCU_768K_96K
USER_DEFS += -D$(SDK_VERSION)
# this must be the last include
include $(SDK_ROOT)/applications/rules.mk