From 7b2b8feb3a21b8b91a868a5bacf8d3165c294681 Mon Sep 17 00:00:00 2001 From: skarg Date: Mon, 21 Nov 2016 14:55:43 +0000 Subject: [PATCH] Do not make router by default on Linux since it relies on libconfig and that is not installed by default and the make fails. --- bacnet-stack/Makefile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/bacnet-stack/Makefile b/bacnet-stack/Makefile index e687965f..94a500ff 100644 --- a/bacnet-stack/Makefile +++ b/bacnet-stack/Makefile @@ -56,19 +56,12 @@ 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 gateway router-ipv6 ${DEMO_LINUX} -.PHONY : all library demos router gateway router-ipv6 ${DEMO_LINUX} clean +.PHONY : all library demos router gateway router-ipv6 clean library: $(MAKE) -s -C lib all