From 61cda1dbf902280b8465e140a8d685cd940e9245 Mon Sep 17 00:00:00 2001 From: skarg Date: Mon, 12 Nov 2012 22:32:05 +0000 Subject: [PATCH] Added conditional in Makefile so that the BVLC (IP) demos only get built when BACnet/IP is specified. --- bacnet-stack/demo/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bacnet-stack/demo/Makefile b/bacnet-stack/demo/Makefile index a05b7d9e..943b9e77 100644 --- a/bacnet-stack/demo/Makefile +++ b/bacnet-stack/demo/Makefile @@ -47,8 +47,11 @@ LFLAGS = -Wl,$(LIBRARIES) SUBDIRS = readprop writeprop readfile writefile reinit server dcc \ whohas whois ucov scov timesync epics readpropm \ - mstpcap mstpcrc uptransfer \ - whoisrouter iamrouter initrouter readbdt + mstpcap mstpcrc uptransfer + +ifeq (${BACDL_DEFINE},-DBACDL_BIP=1) + SUBDIRS += whoisrouter iamrouter initrouter readbdt +endif #ifeq (${BACNET_PORT},linux) #SUBDIRS += router #endif