Issue 2 move folders and use deep path include file names to prevent collisions (#4)
* 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
This commit is contained in:
@@ -1,144 +1,127 @@
|
||||
# Main Makefile for BACnet-stack project with GCC
|
||||
|
||||
# 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
|
||||
|
||||
# configuration
|
||||
# If BACNET_DEFINES has not already been set, configure to your needs here
|
||||
MY_BACNET_DEFINES = -DPRINT_ENABLED=1
|
||||
MY_BACNET_DEFINES += -DBACAPP_ALL
|
||||
MY_BACNET_DEFINES += -DBACFILE
|
||||
MY_BACNET_DEFINES += -DINTRINSIC_REPORTING
|
||||
MY_BACNET_DEFINES += -DBACNET_TIME_MASTER
|
||||
MY_BACNET_DEFINES += -DBACNET_PROPERTY_LISTS=1
|
||||
MY_BACNET_DEFINES += -DBACNET_PROTOCOL_REVISION=17
|
||||
BACNET_DEFINES ?= $(MY_BACNET_DEFINES)
|
||||
|
||||
# un-comment the next line to build in uci integration
|
||||
#BACNET_DEFINES += -DBAC_UCI
|
||||
#UCI_LIB_DIR ?= /usr/local/lib
|
||||
|
||||
#BACDL_DEFINE=-DBACDL_ETHERNET=1
|
||||
#BACDL_DEFINE=-DBACDL_ARCNET=1
|
||||
#BACDL_DEFINE=-DBACDL_MSTP=1
|
||||
BACDL_DEFINE?=-DBACDL_BIP=1
|
||||
|
||||
# Declare your level of BBMD support
|
||||
BBMD_DEFINE ?=-DBBMD_ENABLED=1
|
||||
#BBMD_DEFINE ?= -DBBMD_ENABLED=0
|
||||
#BBMD_DEFINE ?= -DBBMD_CLIENT_ENABLED
|
||||
|
||||
# Passing parameters via command line
|
||||
MAKE_DEFINE ?=
|
||||
|
||||
# Define WEAK_FUNC for [...somebody help here; I can't find any uses of it]
|
||||
DEFINES = $(BACNET_DEFINES) $(BACDL_DEFINE) $(BBMD_DEFINE) -DWEAK_FUNC=
|
||||
DEFINES += $(MAKE_DEFINE)
|
||||
|
||||
# BACnet Ports Directory
|
||||
BACNET_PORT ?= linux
|
||||
|
||||
# Default compiler settings
|
||||
OPTIMIZATION = -Os
|
||||
DEBUGGING =
|
||||
WARNINGS = -Wall -Wmissing-prototypes
|
||||
ifeq (${BUILD},debug)
|
||||
OPTIMIZATION = -O0
|
||||
DEBUGGING = -g -DDEBUG_ENABLED=1
|
||||
ifeq (${BACDL_DEFINE},-DBACDL_BIP=1)
|
||||
DEFINES += -DBIP_DEBUG
|
||||
endif
|
||||
endif
|
||||
CFLAGS = $(WARNINGS) $(DEBUGGING) $(OPTIMIZATION) $(STANDARDS) $(INCLUDES) $(DEFINES)
|
||||
# Main Makefile for BACnet-stack applications, tests, and sample ports
|
||||
|
||||
# Export the variables defined here to all subprocesses
|
||||
# (see http://www.gnu.org/software/automake/manual/make/Special-Targets.html)
|
||||
.EXPORT_ALL_VARIABLES:
|
||||
|
||||
all: library demos router-ipv6 ${DEMO_LINUX}
|
||||
.PHONY : all library demos router gateway router-ipv6 clean test
|
||||
# all: demos router-ipv6 ${DEMO_LINUX}
|
||||
|
||||
library:
|
||||
$(MAKE) -s -C lib all
|
||||
.PHONY: all
|
||||
all: apps
|
||||
|
||||
demos:
|
||||
$(MAKE) -C demo all
|
||||
.PHONY: win32
|
||||
win32:
|
||||
$(MAKE) BACNET_PORT=win32 -C apps all
|
||||
|
||||
gateway:
|
||||
$(MAKE) -B -s -C demo gateway
|
||||
|
||||
server:
|
||||
$(MAKE) -j -B -C demo server
|
||||
|
||||
mstpcap:
|
||||
$(MAKE) -B -C demo mstpcap
|
||||
|
||||
mstpcrc: library
|
||||
$(MAKE) -B -C demo mstpcrc
|
||||
|
||||
iam:
|
||||
$(MAKE) -B -C demo iam
|
||||
|
||||
uevent:
|
||||
$(MAKE) -B -C demo uevent
|
||||
|
||||
writepropm:
|
||||
$(MAKE) -s -B -C demo writepropm
|
||||
.PHONY: apps
|
||||
apps:
|
||||
$(MAKE) -s -C apps all
|
||||
|
||||
.PHONY: abort
|
||||
abort:
|
||||
$(MAKE) -B -C demo abort
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
.PHONY: dcc
|
||||
dcc:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
.PHONY: epics
|
||||
epics:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
.PHONY: error
|
||||
error:
|
||||
$(MAKE) -B -C demo error
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
router: library
|
||||
$(MAKE) -s -C demo router
|
||||
.PHONY: iam
|
||||
iam:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
router-ipv6: library
|
||||
$(MAKE) -B -s -C demo router-ipv6
|
||||
.PHONY: getevent
|
||||
getevent:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
.PHONY: gateway
|
||||
gateway:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
.PHONY: server
|
||||
server:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
.PHONY: mstpcap
|
||||
mstpcap:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
.PHONY: mstpcrc
|
||||
mstpcrc:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
.PHONY: uevent
|
||||
uevent:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
.PHONY: writepropm
|
||||
writepropm:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
.PHONY: router
|
||||
router:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
.PHONY: router-ipv6
|
||||
router-ipv6:
|
||||
$(MAKE) -s -C apps $@
|
||||
|
||||
# Add "ports" to the build, if desired
|
||||
.PHONY: ports
|
||||
ports: atmega168 bdk-atxx4-mstp at91sam7s stm32f10x
|
||||
@echo "Built the ARM7 and AVR ports"
|
||||
|
||||
.PHONY: atmega168
|
||||
atmega168: ports/atmega168/Makefile
|
||||
$(MAKE) -s -C ports/atmega168 clean all
|
||||
|
||||
.PHONY: at91sam7s
|
||||
at91sam7s: ports/at91sam7s/Makefile
|
||||
$(MAKE) -s -C ports/at91sam7s clean all
|
||||
|
||||
.PHONY: stm32f10x
|
||||
stm32f10x: ports/stm32f10x/Makefile
|
||||
$(MAKE) -s -C ports/stm32f10x clean all
|
||||
|
||||
.PHONY: mstpsnap
|
||||
mstpsnap: ports/linux/mstpsnap.mak
|
||||
$(MAKE) -s -C ports/linux -f mstpsnap.mak clean all
|
||||
|
||||
.PHONY: bdk-atxx4-mstp
|
||||
bdk-atxx4-mstp: ports/bdk-atxx4-mstp/Makefile
|
||||
$(MAKE) -s -C ports/bdk-atxx4-mstp clean all
|
||||
|
||||
.PHONY: pretty
|
||||
pretty:
|
||||
find ./src -iname *.h -o -iname *.c -exec clang-format -i -style=file -fallback-style=none {} \;
|
||||
find ./include -iname *.h -o -iname *.c -exec clang-format -i -style=file -fallback-style=none {} \;
|
||||
find ./demo -iname *.h -o -iname *.c -exec clang-format -i -style=file -fallback-style=none {} \;
|
||||
find ./src -iname *.h -o -iname *.c -exec \
|
||||
clang-format -i -style=file -fallback-style=none {} \;
|
||||
find ./apps -iname *.h -o -iname *.c -exec \
|
||||
clang-format -i -style=file -fallback-style=none {} \;
|
||||
|
||||
.PHONY : tidy
|
||||
tidy:
|
||||
find ./src -iname *.h -o -iname *.c -exec \
|
||||
clang-tidy {} -fix-errors -checks="readability-braces-around-statements" \
|
||||
-- -Isrc -Iports/linux \;
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
$(MAKE) -s -C lib clean
|
||||
$(MAKE) -s -C demo clean
|
||||
$(MAKE) -s -C demo/router clean
|
||||
$(MAKE) -s -C demo/router-ipv6 clean
|
||||
$(MAKE) -s -C demo/gateway clean
|
||||
$(MAKE) -s -C src clean
|
||||
$(MAKE) -s -C apps clean
|
||||
$(MAKE) -s -C apps/router clean
|
||||
$(MAKE) -s -C apps/router-ipv6 clean
|
||||
$(MAKE) -s -C apps/gateway clean
|
||||
|
||||
.PHONY: test
|
||||
test:
|
||||
$(MAKE) -s -C test clean
|
||||
$(MAKE) -s -C test all
|
||||
$(MAKE) -s -C test report
|
||||
$(MAKE) -s -C demo/object clean
|
||||
$(MAKE) -s -C demo/object all
|
||||
$(MAKE) -s -C demo/object report
|
||||
|
||||
|
||||
Reference in New Issue
Block a user