1
0
mirror of https://github.com/GOSTSec/gostcoin synced 2025-01-30 16:34:29 +00:00

update daemon makefiles

This commit is contained in:
R4SAS 2017-05-01 22:38:04 +03:00
parent 696a616323
commit 784be2fbcc
2 changed files with 4 additions and 3 deletions

View File

@ -18,7 +18,7 @@
CXX ?= g++
USE_IPV6:=1
USE_DEBUG:=no
USE_DEBUG:=0
DEPSDIR?=/usr/local
BOOST_SUFFIX?=-mt
@ -48,7 +48,7 @@ LIBS= \
DEFS=-D_MT -DWIN32 -D_WINDOWS -DWIN32_LEAN_AND_MEAN -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE
ifneq (${USE_DEBUG}, no)
ifneq (${USE_DEBUG}, 0)
DEBUGFLAGS=-g
endif

View File

@ -5,6 +5,7 @@
# :=1 --> Enable IPv6 support
# :=0 --> Disable IPv6 support
USE_IPV6:=1
USE_DEBUG:=0
LINK:=$(CXX)
@ -85,7 +86,7 @@ LIBS += \
HARDENING+=-D_FORTIFY_SOURCE=2
#
ifneq (${USE_DEBUG}, no)
ifneq (${USE_DEBUG}, 0)
DEBUGFLAGS=-g
endif