Added router to Makefile for Linux all build. Added gateway and router-ipv6 to the Makefile all build.

This commit is contained in:
skarg
2016-11-17 03:33:13 +00:00
parent 9699801f32
commit e21553e674
2 changed files with 9 additions and 3 deletions
+9 -2
View File
@@ -56,12 +56,19 @@ endif
endif
CFLAGS = $(WARNINGS) $(DEBUGGING) $(OPTIMIZATION) $(STANDARDS) $(INCLUDES) $(DEFINES)
DEMO_LINUX =
ifeq (${BACNET_PORT},linux)
ifneq (${OSTYPE},cygwin)
DEMO_LINUX=router
endif
endif
# 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
.PHONY : all library demos clean
all: library demos gateway router-ipv6 ${DEMO_LINUX}
.PHONY : all library demos router gateway router-ipv6 ${DEMO_LINUX} clean
library:
$(MAKE) -s -C lib all
-1
View File
@@ -66,7 +66,6 @@ endif
ifeq (${BACNET_PORT},linux)
ifneq (${OSTYPE},cygwin)
SUBDIRS += mstpcap mstpcrc
#SUBDIRS += router
endif
endif