From 8bb96536d18cad1eab468a1dc739b4d49ce27174 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Thu, 19 Jul 2018 19:07:03 +0100 Subject: [PATCH] Add optional DCS_LINK and DEXTRA_LINK to the Makefiles. --- Makefile | 3 +++ MakefileGUI | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 55bdb1d..e3c3283 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,9 @@ export LOGDIR := "/var/log" export CONFDIR := "/etc" export BINDIR := "/usr/bin" +# Add -DDCS_LINK to the end of the CFLAGS line below to add DCS linking to StarNet +# Add -DDEXTRA_LINK to the end of the CFLAGS line below to add DExtra linking to StarNet + export CXX := $(shell wx-config --cxx) export CFLAGS := -O2 -Wall $(shell wx-config --cxxflags) -DLOG_DIR='$(LOGDIR)' -DCONF_DIR='$(CONFDIR)' -DDATA_DIR='$(DATADIR)' export GUILIBS := $(shell wx-config --libs adv,core,base) diff --git a/MakefileGUI b/MakefileGUI index a7e006a..50c3fc0 100644 --- a/MakefileGUI +++ b/MakefileGUI @@ -3,6 +3,9 @@ export LOGDIR := "/var/log" export CONFDIR := "/etc" export BINDIR := "/usr/bin" +# Add -DDCS_LINK to the end of the CFLAGS line below to add DCS linking to StarNet +# Add -DDEXTRA_LINK to the end of the CFLAGS line below to add DExtra linking to StarNet + export CXX := $(shell wx-config --cxx) export CFLAGS := -O2 -Wall $(shell wx-config --cxxflags) -DLOG_DIR='$(LOGDIR)' -DCONF_DIR='$(CONFDIR)' -DDATA_DIR='$(DATADIR)' export GUILIBS := $(shell wx-config --libs adv,core,base)