-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings_default.mk
16 lines (16 loc) · 1021 Bytes
/
settings_default.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Makefile-include
#
# Build the ircDDB Gateway software on Linux with default settings (x86)
#
export DATADIR := "/usr/local/etc"
export LIBS := $(shell wx-config --libs adv,core)
export CC := $(shell wx-config --cxx)
export LDFLAGS := -g
export BINDIR := "/usr/local/bin"
#
# Comment out the first CFLAGS entry and uncomment the second to enable the DExtra Link. For DCS Link you must comment out the first
# CFLAGS entry and uncomment the thrird entrt. You must do a "make clean" before rebuilding the software.
#
export CFLAGS := -g -O2 -Wall -Wno-non-virtual-dtor -Wno-strict-aliasing -DDATA_DIR='$(DATADIR)' -DBIN_DIR='$(BINDIR)' $(shell wx-config --cxxflags)
# export CFLAGS := -g -O2 -Wall -Wno-non-virtual-dtor -Wno-strict-aliasing -DDATA_DIR='$(DATADIR)' -DBIN_DIR='$(BINDIR)' -DDEXTRA_LINK $(shell wx-config --cxxflags)
# export CFLAGS := -g -O2 -Wall -Wno-non-virtual-dtor -Wno-strict-aliasing -DDATA_DIR='$(DATADIR)' -DBIN_DIR='$(BINDIR)' -DDCS_LINK $(shell wx-config --cxxflags)