1 | # |
---|
2 | # Copyright (C) 2018 Modelon AB |
---|
3 | # |
---|
4 | # This program is free software: you can redistribute it and/or modify |
---|
5 | # it under the terms of the GNU General Public License version 3 as published |
---|
6 | # by the Free Software Foundation, or optionally, under the terms of the |
---|
7 | # Common Public License version 1.0 as published by IBM. |
---|
8 | # |
---|
9 | # This program is distributed in the hope that it will be useful, |
---|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
12 | # GNU General Public License, or the Common Public License, for more details. |
---|
13 | # |
---|
14 | # You should have received copies of the GNU General Public License |
---|
15 | # and the Common Public License along with this program. If not, |
---|
16 | # see <http://www.gnu.org/licenses/> or |
---|
17 | # <http://www.ibm.com/developerworks/library/os-cpl.html/> respectively. |
---|
18 | |
---|
19 | # mkfile_path is the path to this file |
---|
20 | mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) |
---|
21 | mkfile_dir := $(dir $(mkfile_path)) |
---|
22 | include $(mkfile_dir)/win |
---|
23 | |
---|
24 | BITNESS=64 |
---|
25 | FORCE_32_BIT=false |
---|
26 | EXTRA_SETUP_ARGS=--no-msvcr=true --with_openmp=True |
---|
27 | |
---|
28 | INSTALL_DIR_FOLDER=${WORKSPACE}/install/Python_64 |
---|
29 | SUPERLU_HOME=$(BUILD_DIR)/superlu_build64 |
---|
30 | SUNDIALS_HOME=$(BUILD_DIR)/sundials_install64 |
---|
31 | BLAS_HOME=$(BUILD_DIR)/blas_install64 |
---|
32 | LAPACK_HOME=$(BUILD_DIR)/lapack_install64 |
---|
33 | INSTALL_DIR_FOLDER=${WORKSPACE}/install/Python_64 |
---|
34 | |
---|
35 | PYTHONHOME=$(SDK_HOME)/Python27/Python_64/ |
---|