d50c190957
* moving folders and files and adjust server demo build * Fix Makefile for apps/server on Linux * fix unit test source file folders * fix datetime convert UTC functions. Add Code::Blocks project for datetime testing * added some ignore extensions * disable parallel make option * fix build for abort, dcc, and epics apps * fix build for dcc, epics, error, and getevent apps. * Fixed building of all apps * fix the ipv4 to ipv6 router app build * Change indent style from Google to Webkit * make pretty to re-format style * removed common Makefile since we already had one and two was too many * remove scripts from root folder that are no longer maintained or used * remove mercurial EOL and ignore files for git repo * remove .vscodeconfig files from repo * tweak clang-format style * clang-format src and apps with tweaked style * added clang-tidy to fix readability if braces in src * result of make tidy for src and apps * fix clang-tidy mangling * Added code::blocks project for BACnet server simulation * added code::blocks linux project for WhoIs app * update text files for EOL * fix EOL in some files * fixed make win32 apps for older gcc * Removed Borland C++ Makefile in apps. Unable to maintain support for Borland C++ compiler. * created codeblocks project for apps/epics for Windows * fixing ports/xplained to work with new data structure. * fix ports/xplained example for Atmel Studio compile * fix ports/stm32f10x example for gcc Makefile compile * fix ports/stm32f10x example for IAR EWARM compile * fix ports/xplained timer callback * fix ports/bdk_atxx_mspt build with subdirs * fix ports/bdk_atxx_mspt build with subdirs * updated git ignore for IAR build artifacts * updated gitignore for non-tracked files and folders * fixed bdk-atxx4-mstp port for Rowley Crossworks project file * fixed bdk-atxx4-mstp port for GCC AVR Makefile * fixed atmega168 port for IAR AVR and GCC AVR Makefile * fixed at91sam7s port for IAR ARM and GCC ARM Makefile * removed unmaintainable DOS, RTOS32, and atmega8 ports. Updated rx62n (untested). * changed arm7 to uip port
276 lines
5.9 KiB
Makefile
276 lines
5.9 KiB
Makefile
# tools - only if you need them.
|
|
# Most platforms have this already defined
|
|
# CC = gcc
|
|
# AR = ar
|
|
# MAKE = make
|
|
# SIZE = size
|
|
#
|
|
# Assumes rm and cp are available
|
|
|
|
# Passing parameters via command line or from Makefile export to this one
|
|
BACNET_DEFINES ?=
|
|
BACNET_LIB ?=
|
|
|
|
# choose a datalink to build the example applications
|
|
# Use BACDL=mstp or BACDL=bip and BBMD=server when invoking make
|
|
|
|
ifeq (${BACDL_DEFINE},)
|
|
ifeq (${BACDL},ethernet)
|
|
BACDL_DEFINE=-DBACDL_ETHERNET=1
|
|
endif
|
|
ifeq (${BACDL},arcnet)
|
|
BACDL_DEFINE=-DBACDL_ARCNET=1
|
|
endif
|
|
ifeq (${BACDL},mstp)
|
|
BACDL_DEFINE=-DBACDL_MSTP=1
|
|
endif
|
|
ifeq (${BACDL},bip)
|
|
BACDL_DEFINE=-DBACDL_BIP=1
|
|
endif
|
|
ifeq (${BACDL},bip6)
|
|
BACDL_DEFINE=-DBACDL_BIP6=1
|
|
endif
|
|
ifeq (${BACDL},)
|
|
BACDL_DEFINE ?= -DBACDL_BIP=1
|
|
BBMD_DEFINE ?= -DBBMD_ENABLED=1
|
|
endif
|
|
|
|
ifeq (${BBMD},server)
|
|
BBMD_DEFINE=-DBBMD_ENABLED=1
|
|
endif
|
|
ifeq (${BBMD},client)
|
|
BBMD_DEFINE=-DBBMD_ENABLED=1
|
|
BBMD_DEFINE=-DBBMD_CLIENT_ENABLED
|
|
endif
|
|
endif
|
|
|
|
# Define WEAK_FUNC for unsupported or specific compilers
|
|
BACNET_DEFINES += $(BACDL_DEFINE)
|
|
BACNET_DEFINES += $(BBMD_DEFINE)
|
|
BACNET_DEFINES += -DWEAK_FUNC=
|
|
BACNET_DEFINES += $(MAKE_DEFINE)
|
|
|
|
# Choose a BACnet Ports Directory for the example applications target OS
|
|
# linux, win32, bsd
|
|
BACNET_PORT ?= linux
|
|
|
|
# build in uci integration - use UCI=1 when invoking make
|
|
ifeq (${UCI},1)
|
|
BACNET_DEFINES += -DBAC_UCI
|
|
UCI_LIB_DIR ?= /usr/local/lib
|
|
BACNET_LIB += -L$(UCI_LIB_DIR),-luci
|
|
endif
|
|
# OS specific builds
|
|
ifeq (${BACNET_PORT},linux)
|
|
PFLAGS = -pthread
|
|
TARGET_EXT =
|
|
SYSTEM_LIB=-lc,-lgcc,-lrt,-lm
|
|
endif
|
|
ifeq (${BACNET_PORT},bsd)
|
|
PFLAGS = -pthread
|
|
TARGET_EXT =
|
|
SYSTEM_LIB=-lc,-lm
|
|
endif
|
|
ifeq (${BACNET_PORT},win32)
|
|
TARGET_EXT = .exe
|
|
SYSTEM_LIB=-lws2_32,-lgcc,-lm,-liphlpapi,-lwinmm
|
|
BACNET_DEFINES += -D_NO_OLDNAMES
|
|
endif
|
|
|
|
# source file locations
|
|
BACNET_PORT_DIR = $(realpath ../ports/$(BACNET_PORT))
|
|
BACNET_SRC_DIR = $(realpath ../src)
|
|
|
|
#build for release (default) or debug
|
|
OPTIMIZATION ?= -Os
|
|
DEBUGGING ?=
|
|
WARNINGS ?= -Wall -Wmissing-prototypes
|
|
# dead code removal
|
|
ifeq (${BUILD},debug)
|
|
OPTIMIZATION = -O0
|
|
DEBUGGING = -g -DDEBUG_ENABLED=1
|
|
ifeq (${BACDL_DEFINE},-DBACDL_BIP=1)
|
|
BACNET_DEFINES += -DBIP_DEBUG
|
|
endif
|
|
endif
|
|
|
|
# If BACNET_DEFINES has not already been set, configure to your needs here
|
|
BACNET_DEFINES ?=
|
|
BACNET_DEFINES += -DPRINT_ENABLED=1
|
|
BACNET_DEFINES += -DBACAPP_ALL
|
|
BACNET_DEFINES += -DBACFILE
|
|
BACNET_DEFINES += -DINTRINSIC_REPORTING
|
|
BACNET_DEFINES += -DBACNET_TIME_MASTER
|
|
BACNET_DEFINES += -DBACNET_PROPERTY_LISTS=1
|
|
BACNET_DEFINES += -DBACNET_PROTOCOL_REVISION=17
|
|
|
|
# put all the flags together
|
|
INCLUDES = -I$(BACNET_SRC_DIR) -I$(BACNET_PORT_DIR)
|
|
CFLAGS += $(WARNINGS) $(DEBUGGING) $(OPTIMIZATION) $(BACNET_DEFINES) $(INCLUDES)
|
|
LFLAGS += -Wl,$(SYSTEM_LIB)
|
|
ifneq (${BACNET_LIB},)
|
|
LFLAGS += -Wl,$(BACNET_LIB)
|
|
endif
|
|
# GCC dead code removal
|
|
CFLAGS += -ffunction-sections -fdata-sections
|
|
LFLAGS += -Wl,--gc-sections
|
|
|
|
PORT_ARCNET_SRC = \
|
|
$(BACNET_PORT_DIR)/arcnet.c
|
|
|
|
PORT_MSTP_SRC = \
|
|
$(BACNET_PORT_DIR)/rs485.c \
|
|
$(BACNET_PORT_DIR)/dlmstp.c \
|
|
$(BACNET_SRC_DIR)/bacnet/datalink/mstp.c \
|
|
$(BACNET_SRC_DIR)/bacnet/datalink/mstptext.c \
|
|
$(BACNET_SRC_DIR)/bacnet/datalink/crc.c
|
|
|
|
PORT_ETHERNET_SRC = \
|
|
$(BACNET_PORT_DIR)/ethernet.c
|
|
|
|
PORT_BIP_SRC = \
|
|
$(BACNET_PORT_DIR)/bip-init.c \
|
|
$(BACNET_SRC_DIR)/bacnet/datalink/bvlc.c \
|
|
$(BACNET_SRC_DIR)/bacnet/datalink/bip.c
|
|
|
|
PORT_BIP6_SRC = \
|
|
$(BACNET_PORT_DIR)/bip6.c \
|
|
$(BACNET_SRC_DIR)/bacnet/basic/bbmd6/h_bbmd6.c \
|
|
$(BACNET_SRC_DIR)/bacnet/basic/bbmd6/vmac.c \
|
|
$(BACNET_SRC_DIR)/bacnet/datalink/bvlc6.c
|
|
|
|
PORT_ALL_SRC = \
|
|
$(BACNET_SRC_DIR)/bacnet/datalink/datalink.c \
|
|
$(PORT_ARCNET_SRC) \
|
|
$(PORT_MSTP_SRC) \
|
|
$(PORT_ETHERNET_SRC) \
|
|
$(PORT_BIP_SRC) \
|
|
$(PORT_BIP6_SRC)
|
|
|
|
ifeq (${BACDL_DEFINE},-DBACDL_BIP=1)
|
|
BACNET_PORT_SRC = ${PORT_BIP_SRC}
|
|
endif
|
|
ifeq (${BACDL_DEFINE},-DBACDL_BIP6=1)
|
|
BACNET_PORT_SRC = ${PORT_BIP6_SRC}
|
|
endif
|
|
ifeq (${BACDL_DEFINE},-DBACDL_MSTP=1)
|
|
BACNET_PORT_SRC = ${PORT_MSTP_SRC}
|
|
endif
|
|
ifeq (${BACDL_DEFINE},-DBACDL_ARCNET=1)
|
|
BACNET_PORT_SRC = ${PORT_ARCNET_SRC}
|
|
endif
|
|
ifeq (${BACDL_DEFINE},-DBACDL_ETHERNET=1)
|
|
BACNET_PORT_SRC = ${PORT_ETHERNET_SRC}
|
|
endif
|
|
ifdef BACDL_ALL
|
|
BACNET_PORT_SRC = ${PORT_ALL_SRC}
|
|
endif
|
|
|
|
BACNET_PORT_SRC += \
|
|
$(BACNET_SRC_DIR)/bacnet/datalink/dlenv.c \
|
|
$(BACNET_PORT_DIR)/mstimer-init.c \
|
|
$(BACNET_PORT_DIR)/datetime-init.c \
|
|
|
|
BACNET_SRC ?= \
|
|
$(wildcard $(BACNET_SRC_DIR)/bacnet/*.c) \
|
|
|
|
BACNET_BASIC_SRC ?= \
|
|
$(wildcard $(BACNET_SRC_DIR)/bacnet/basic/*.c) \
|
|
$(wildcard $(BACNET_SRC_DIR)/bacnet/basic/binding/*.c) \
|
|
$(wildcard $(BACNET_SRC_DIR)/bacnet/basic/sys/*.c) \
|
|
$(BACNET_SRC_DIR)/bacnet/basic/npdu/h_npdu.c \
|
|
$(BACNET_SRC_DIR)/bacnet/basic/npdu/s_router.c \
|
|
$(BACNET_SRC_DIR)/bacnet/basic/tsm/tsm.c
|
|
|
|
.EXPORT_ALL_VARIABLES:
|
|
|
|
SUBDIRS = readprop writeprop readfile writefile reinit server dcc \
|
|
whohas whois iam ucov scov timesync epics readpropm readrange \
|
|
writepropm uptransfer getevent uevent abort error
|
|
|
|
ifeq (${BACDL_DEFINE},-DBACDL_BIP=1)
|
|
SUBDIRS += whoisrouter iamrouter initrouter readbdt
|
|
endif
|
|
|
|
ifeq (${BACNET_PORT},linux)
|
|
ifneq (${OSTYPE},cygwin)
|
|
SUBDIRS += mstpcap mstpcrc
|
|
endif
|
|
endif
|
|
|
|
ifeq (${BACNET_PORT},win32)
|
|
SUBDIRS += mstpcap mstpcrc
|
|
endif
|
|
|
|
.PHONY: all clean
|
|
TARGETS = all clean
|
|
|
|
$(TARGETS): %: $(patsubst %, %.%, $(SUBDIRS))
|
|
|
|
$(foreach TGT, $(TARGETS), $(patsubst %, %.$(TGT), $(SUBDIRS))):
|
|
$(MAKE) -b -C $(subst ., , $@)
|
|
|
|
.PHONY: gateway
|
|
gateway:
|
|
$(MAKE) -s -b -C gateway
|
|
|
|
.PHONY: server
|
|
server:
|
|
$(MAKE) -s -b -C $@
|
|
|
|
.PHONY: mstpcap
|
|
mstpcap:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: mstpcrc
|
|
mstpcrc:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: abort
|
|
abort:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: dcc
|
|
dcc:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: epics
|
|
epics:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: error
|
|
error:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: getevent
|
|
getevent:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: iam
|
|
iam:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: iamrouter
|
|
iamrouter:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: initrouter
|
|
initrouter:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: uevent
|
|
uevent:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: router
|
|
router:
|
|
$(MAKE) -s -b -C $@
|
|
|
|
.PHONY: router-ipv6
|
|
router-ipv6:
|
|
$(MAKE) -b -C $@
|
|
|
|
.PHONY: writepropm
|
|
writepropm:
|
|
$(MAKE) -b -C $@
|