From 15ae04d347050a83b5c6206e5aa369251cf446f4 Mon Sep 17 00:00:00 2001 From: Chris Tallon Date: Fri, 25 Oct 2019 17:20:48 +0100 Subject: [PATCH] Makefile updates for MVP --- GNUmakefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 82fd3e0..40b1728 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -3,7 +3,7 @@ vomp_platform=$(shell ./select-platform) #vomp_platform=crossraspberry $(info selected $(vomp_platform)) -vomp_options=-DIPV6 +vomp_options= # uncomment the line below if you want to build vomp application without a reboot option, automatically set for windows! #vomp_options+= -DVOMP_HAS_EXIT @@ -24,6 +24,7 @@ CC=gcc STRIP=strip CXX=g++ LD=g++ +vomp_options += -DIPV6 endif ifeq ($(vomp_platform),crossraspberry) @@ -36,7 +37,7 @@ endif CXXFLAGS_DEV = -g -O0 -Wall -Wshadow -Wno-psabi -DDEV -D_GNU_SOURCE $(INCLUDES) $(vomp_options) -CXXFLAGS_REL = -O3 -Wall -Wshadow -Wno-psabi -D_GNU_SOURCE $(INCLUDES) $(vomp_options) +CXXFLAGS_REL = -O3 -Wall -Wshadow -D_GNU_SOURCE $(INCLUDES) $(vomp_options) LIBPATHS = -- 2.39.2