File: config.mk.64

package info (click to toggle)
gretl 2016d-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 48,620 kB
  • ctags: 22,779
  • sloc: ansic: 345,830; sh: 4,648; makefile: 2,712; xml: 570; perl: 364
file content (41 lines) | stat: -rw-r--r-- 1,213 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Configuration variables governing the build of gretl for win32

# change to 'native' if building on MS Windows
BUILDTYPE = cross

ifeq ($(BUILDTYPE),cross)
  # directory containing the cross tools
  MGWDIR = /opt/win64/x86_64-w64-mingw32
  # prefix for mingw tools (e.g. mingw32-gcc)
  MGW_PREFIX = x86_64-w64-mingw32-
  # msgfmt command for producing win32 messages file
  WIN32_MSGFMT = wine c:/bin/msgfmt.exe 
  # location of pkgconfig files
  PKG_CONFIG_PATH = $(MGWDIR)/lib/pkgconfig
else
  # directory containing mingw
  MGWDIR = c:/mingw
  # no prefix for gcc, etc.
  MGW_PREFIX =
  # msgfmt command for producing win32 messages file
  WIN32_MSGFMT = msgfmt.exe
  # location of pkgconfig files
  PKG_CONFIG_PATH = c:/msys/1.0/lib/pkgconfig:$(MGWDIR)/lib/pkgconfig
endif

# GTK version switch: set HAVE_GTK_SPINNER to "yes" if you
# are building (and running) with GTK version 2.20.0 or higher,
# otherwise set to "no".
HAVE_GTK_SPINNER = yes

# set this for an MPI-enabled build
have_mpi = yes

# set this if building using openblas
use_openblas = yes

# libxml2 includes: adjust to match your system
XML2_INC = $(MGWDIR)/include/libxml2

# libR includes: likewise
RLIB_CFLAGS = -I/opt/R/lib64/R/include