Makefile 726 Bytes

#
# WiSmart Applications Makefile
#
# Copyright 2012 eConais S.A
# 


# Set the sdk root folder
SDK_ROOT = ../../
PROJECT_OUT = smartcities

USER_SRC = main.c configServer.c httpClient.c callbacks.c sensors.c json.c i2c.c ntp.c buffer.c timer-loop.c adc.c
USER_INCDIR = include/ makefsdata/

# 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