annotate extra/NaN/src/Makefile @ 12582:664b99514b4a octave-forge

[nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
author schloegl
date Fri, 03 Apr 2015 13:21:05 +0000
parents 22658fcb51e9
children 26be3bc7237c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7802
03cd0c75b7ac docu for ML72; highlight user-specific configuration in Makefile
schloegl
parents: 7376
diff changeset
1 ####################################################
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
2 # Copyright 2010, 2011,2012 Alois Schloegl
7802
03cd0c75b7ac docu for ML72; highlight user-specific configuration in Makefile
schloegl
parents: 7376
diff changeset
3 # This is part of the NaN-toolbox - a statistics and machine learning toolbox for data with and without missing values.
03cd0c75b7ac docu for ML72; highlight user-specific configuration in Makefile
schloegl
parents: 7376
diff changeset
4 # http://pub.ist.ac.at/~schloegl/matlab/NaN/
03cd0c75b7ac docu for ML72; highlight user-specific configuration in Makefile
schloegl
parents: 7376
diff changeset
5 ####################################################
03cd0c75b7ac docu for ML72; highlight user-specific configuration in Makefile
schloegl
parents: 7376
diff changeset
6
03cd0c75b7ac docu for ML72; highlight user-specific configuration in Makefile
schloegl
parents: 7376
diff changeset
7 ### modify directories according to your needs
7993
b670af56dd9d octave version support included
schloegl
parents: 7992
diff changeset
8
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
9 # Define non-default octave-version
7993
b670af56dd9d octave version support included
schloegl
parents: 7992
diff changeset
10 # Octave - global install (e.g. from debian package)
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
11 # OCTAVE_VERSION=
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
12 # Better alternative: define an OCTAVE_VERSION bash variable (or in .bashrc or .profile)
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
13 # OCTAVE_VERSION=-3.6.3
7993
b670af56dd9d octave version support included
schloegl
parents: 7992
diff changeset
14
b670af56dd9d octave version support included
schloegl
parents: 7992
diff changeset
15 # Matlab configuration
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
16 #MATLABDIR = /usr/local/MATLAB/R2010b
7802
03cd0c75b7ac docu for ML72; highlight user-specific configuration in Makefile
schloegl
parents: 7376
diff changeset
17 # comment the following line if you use MATLAB on 32-bit operating system
03cd0c75b7ac docu for ML72; highlight user-specific configuration in Makefile
schloegl
parents: 7376
diff changeset
18 MEX_OPTION += -largeArrayDims
7993
b670af56dd9d octave version support included
schloegl
parents: 7992
diff changeset
19
7912
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
20 # Mingw crosscompiler: available at http://www.nongnu.org/mingw-cross-env/
12554
5fbbb9986f8e omit -lgomp - its not necessary and causes problems n macosx
schloegl
parents: 12384
diff changeset
21 CROSS = $(HOME)/src/mxe/usr/bin/i686-w64-mingw32.static-
5fbbb9986f8e omit -lgomp - its not necessary and causes problems n macosx
schloegl
parents: 12384
diff changeset
22 CROSS64 = $(HOME)/src/mxe/usr/bin/x86_64-w64-mingw32.static-
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
23 # include directory for Win32-Matlab include
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
24 W32MAT_INC = $(HOME)/bin/win32/Matlab/R2010b/extern/include/
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
25 W64MAT_INC = $(HOME)/bin/win64/Matlab/R2010b/extern/include/
7912
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
26 # path to GNUMEX libraries, available from here http://sourceforge.net/projects/gnumex/
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
27 GNUMEX = $(HOME)/bin/win32/gnumex
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
28 GNUMEX64 = $(HOME)/bin/win64/gnumex
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
29 # building gnumex64 was difficult, these hints were quite useful:
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
30 # http://sourceforge.net/mailarchive/forum.php?thread_name=AANLkTinZvxgC9ezp2P3UCX_a7TAUYuVsp2U40MQUV6qr%40mail.gmail.com&forum_name=gnumex-users
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
31 # Instead of building "mex shortpath.c" and "mex uigetpath.c", I used empty m-functions within argout=argin;
7802
03cd0c75b7ac docu for ML72; highlight user-specific configuration in Makefile
schloegl
parents: 7376
diff changeset
32 ####################################################
6547
schloegl
parents: 5579
diff changeset
33
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
34 CC = gcc
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
35 CXX = g++
9421
8d2b4cc5c0a1 remove requirement of ZLIB; remove obsolete nan2conv.m
schloegl
parents: 8139
diff changeset
36 CFLAGS = -fopenmp -Wall -Wextra -Wconversion -O2 -fPIC
7993
b670af56dd9d octave version support included
schloegl
parents: 7992
diff changeset
37 OCTMEX = mkoctfile$(OCTAVE_VERSION) --mex
7912
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
38 RM = rm
3901
0c83673d2cbe Fix broken Makefile
adb014
parents: 2968
diff changeset
39
12557
b0e00812d4ee on MacOSX do not compile with OpenMP
schloegl
parents: 12554
diff changeset
40 ifneq (Darwin,$(shell uname))
b0e00812d4ee on MacOSX do not compile with OpenMP
schloegl
parents: 12554
diff changeset
41 CFLAGS += -fopenmp
b0e00812d4ee on MacOSX do not compile with OpenMP
schloegl
parents: 12554
diff changeset
42 MEX_OPTION += -lgomp
b0e00812d4ee on MacOSX do not compile with OpenMP
schloegl
parents: 12554
diff changeset
43 endif
b0e00812d4ee on MacOSX do not compile with OpenMP
schloegl
parents: 12554
diff changeset
44
12554
5fbbb9986f8e omit -lgomp - its not necessary and causes problems n macosx
schloegl
parents: 12384
diff changeset
45 MEX_OPTION += CC\#$(CXX) CXX\#$(CXX) CFLAGS\#"$(CFLAGS) " CXXFLAGS\#"$(CFLAGS) "
7912
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
46 MATMEX = $(MATLABDIR)/bin/mex $(MEX_OPTION)
6560
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
47
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
48 PROGS = histo_mex.mex covm_mex.mex kth_element.mex sumskipnan_mex.mex str2array.mex train.mex svmtrain_mex.mex svmpredict_mex.mex xptopen.mex
6547
schloegl
parents: 5579
diff changeset
49
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
50 ### per default only the mex-files for octave are built
8067
6c6cb24503b9 fix warnings when ML is not available
schloegl
parents: 8066
diff changeset
51 mex4o octave: $(PROGS)
8068
12bd31f8727c fix building mex4m
schloegl
parents: 8067
diff changeset
52
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
53
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
54 ### Matlab configuration - search for a matlab directory if not defined above
12572
22658fcb51e9 [tsa][nan] fix handling of MATLABDIR variable in Makefile
schloegl
parents: 12557
diff changeset
55 ifeq (,$(MATLABDIR))
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
56 ifneq (,$(shell ls -1 /usr/local/ |grep MATLAB))
12572
22658fcb51e9 [tsa][nan] fix handling of MATLABDIR variable in Makefile
schloegl
parents: 12557
diff changeset
57 # use oldest, typically mex-files are compatible with newer Matlab versions
22658fcb51e9 [tsa][nan] fix handling of MATLABDIR variable in Makefile
schloegl
parents: 12557
diff changeset
58 MATLABDIR=/usr/local/MATLAB/$(shell ls -1rt /usr/local/MATLAB/ |grep "^R20*" |head -1)
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
59 endif
8067
6c6cb24503b9 fix warnings when ML is not available
schloegl
parents: 8066
diff changeset
60 endif
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
61
12572
22658fcb51e9 [tsa][nan] fix handling of MATLABDIR variable in Makefile
schloegl
parents: 12557
diff changeset
62
22658fcb51e9 [tsa][nan] fix handling of MATLABDIR variable in Makefile
schloegl
parents: 12557
diff changeset
63 ### if MATLABDIR has been found or defined
22658fcb51e9 [tsa][nan] fix handling of MATLABDIR variable in Makefile
schloegl
parents: 12557
diff changeset
64 ifneq (,$(MATLABDIR))
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
65 ifneq (,$(shell ls -1 $(MATLABDIR)/bin/mexext))
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
66 MEX_EXT=$(shell $(MATLABDIR)/bin/mexext)
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
67 mex4m matlab: $(patsubst %.mex, %.$(MEX_EXT), $(PROGS))
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
68 endif
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
69 endif
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
70
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
71
7912
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
72 mexw32 win32: $(patsubst %.mex, %.mexw32, $(PROGS))
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
73 mexw64 win64: $(patsubst %.mex, %.mexw64, $(PROGS))
8068
12bd31f8727c fix building mex4m
schloegl
parents: 8067
diff changeset
74 all: octave win32 win64 mex4m
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
75
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
76 clean:
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
77 -$(RM) *.o *.obj *.o64 core octave-core *.oct *~ *.mex*
3901
0c83673d2cbe Fix broken Makefile
adb014
parents: 2968
diff changeset
78
10621
7740a34f1dac fix message on missing mexext
schloegl
parents: 9421
diff changeset
79 #$(PROGS): Makefile
8139
3fad4ff49e91 svmpredict_mex: remove command line output; some clean up
schloegl
parents: 8101
diff changeset
80
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
81 #########################################################
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
82 # Octave, MATLAB on Linux
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
83 #########################################################
2414
19251cd2753b Latest package manager mega patch, but not the last
adb014
parents:
diff changeset
84 %.oct: %.cc
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
85 mkoctfile$(OCTAVE_VERSION) "$<"
2968
e49fc39e8ee0 Add "clean" rules to makefiles and discard exit status
goffioul
parents: 2414
diff changeset
86
6549
41e9854fe26d use *.cpp instead of *.c
schloegl
parents: 6547
diff changeset
87 %.mex: %.cpp
12554
5fbbb9986f8e omit -lgomp - its not necessary and causes problems n macosx
schloegl
parents: 12384
diff changeset
88 $(OCTMEX) "$<"
12582
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
89
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
90 svm%_mex.mex: svm%_mex.cpp svm.o svm_model_octave.o
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
91 env CC=$(CXX) $(OCTMEX) "$<" svm.o svm_model_octave.o
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
92 svm%_mex.$(MEX_EXT): svm%_mex.cpp svm.o svm_model_matlab.o
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
93 $(MATMEX) "$<" svm.o svm_model_matlab.o
6547
schloegl
parents: 5579
diff changeset
94
12582
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
95 %.$(MEX_EXT): %.cpp svm.o svm_model_matlab.o
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
96 $(MATMEX) "$<" # svm.o svm_model_matlab.o
6549
41e9854fe26d use *.cpp instead of *.c
schloegl
parents: 6547
diff changeset
97
12582
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
98 svm_model_octave.o: svm_model_matlab.c
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
99 $(CC) $(CFLAGS) $(shell $(OCTMEX) -p INCFLAGS) -o svm_model_octave.o -c svm_model_matlab.c
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
100
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
101 svm_model_matlab.o: svm_model_matlab.c
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
102 $(CC) $(CFLAGS) -I $(MATLABDIR)/extern/include -c svm_model_matlab.c
6547
schloegl
parents: 5579
diff changeset
103
6588
98a8d8e4dd44 fix make liblinear svm
schloegl
parents: 6586
diff changeset
104 train.$(MEX_EXT) predict.$(MEX_EXT): train.c linear.h tron.o linear.o linear_model_matlab.c
6563
4b3ccb63b4cf fix for ML*
schloegl
parents: 6562
diff changeset
105 $(CC) $(CFLAGS) -I $(MATLABDIR)/extern/include -c linear_model_matlab.c
6588
98a8d8e4dd44 fix make liblinear svm
schloegl
parents: 6586
diff changeset
106 $(MATMEX) -lblas train.c tron.o linear.o linear_model_matlab.o
6563
4b3ccb63b4cf fix for ML*
schloegl
parents: 6562
diff changeset
107 #$(MATMEX) -lblas predict.c tron.o linear.o linear_model_matlab.o
6560
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
108
6588
98a8d8e4dd44 fix make liblinear svm
schloegl
parents: 6586
diff changeset
109 train.mex predict.mex: train.c linear.h tron.o linear.o linear_model_matlab.c
8101
5dfc952387ba workaround to avoid need for path to mex.h (INCOCTAVE)
schloegl
parents: 8068
diff changeset
110 env CC=$(CXX) $(OCTMEX) -lblas train.c tron.o linear.o linear_model_matlab.c
12582
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
111
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
112 svm.o: svm.cpp svm.h
664b99514b4a [nan] fix Makefile - when running -j same target is compiled simultaneously causing errors
schloegl
parents: 12572
diff changeset
113 $(CC) $(CFLAGS) -c svm.cpp
6560
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
114
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
115 linear.o: linear.cpp linear.h
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
116 $(CXX) $(CFLAGS) -c linear.cpp
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
117
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
118 tron.o: tron.cpp tron.h
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
119 $(CXX) $(CFLAGS) -c tron.cpp
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
120
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
121
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
122 #########################################################
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
123 # MATLAB/WIN32
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
124 #########################################################
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
125 %.obj: %.cpp
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
126 $(CROSS)$(CXX) -fopenmp -c -DMATLAB_MEX_FILE -x c++ -o "$@" -I$(W32MAT_INC) -O2 -DMX_COMPAT_32 "$<"
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
127 %.obj: %.c
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
128 $(CROSS)$(CXX) -fopenmp -c -DMATLAB_MEX_FILE -x c++ -o "$@" -I$(W32MAT_INC) -O2 -DMX_COMPAT_32 "$<"
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
129
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
130 train.mexw32 predict.mexw32: train.obj linear.obj linear_model_matlab.obj tron.obj
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
131 $(CROSS)$(CXX) -shared $(GNUMEX)/mex.def -o "$@" -L$(GNUMEX) -s "$<" linear_model_matlab.obj linear.obj tron.obj -llibmx -llibmex -llibmat -lcholmod -lblas
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
132
7912
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
133 svmpredict_mex.mexw32 : svmpredict_mex.obj svm.obj svm_model_matlab.obj
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
134 $(CROSS)$(CXX) -shared $(GNUMEX)/mex.def -o "$@" -L$(GNUMEX) -s "$<" svm_model_matlab.obj svm.obj -llibmx -llibmex -llibmat -lcholmod
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
135 svmtrain_mex.mexw32 : svmtrain_mex.obj svm.obj svm_model_matlab.obj
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
136 $(CROSS)$(CXX) -shared $(GNUMEX)/mex.def -o "$@" -L$(GNUMEX) -s "$<" svm_model_matlab.obj svm.obj -llibmx -llibmex -llibmat -lcholmod
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
137
7912
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
138 %.mexw32: %.obj
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
139 $(CROSS)$(CXX) -shared $(GNUMEX)/mex.def -o "$@" -L$(GNUMEX) -s "$<" -llibmx -llibmex -llibmat -lcholmod -lgomp -lpthread
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
140
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
141
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
142
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
143 #########################################################
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
144 # MATLAB/WIN64
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
145 #########################################################
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
146
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
147 ## ToDO: fix OpenMP support: currently -fopenmp causes Matlab to crash
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
148 %.o64: %.cpp
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
149 $(CROSS64)$(CXX) -c -DMATLAB_MEX_FILE -x c++ -o "$@" -I$(W64MAT_INC) -O2 "$<"
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
150 %.o64: %.c
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
151 $(CROSS64)$(CXX) -c -DMATLAB_MEX_FILE -x c++ -o "$@" -I$(W64MAT_INC) -O2 "$<"
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
152
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
153 train.mexw64 predict.mexw64: train.o64 linear.o64 linear_model_matlab.o64 tron.o64
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
154 $(CROSS64)$(CXX) -shared $(GNUMEX64)/mex.def -o "$@" -L$(GNUMEX64) -s "$<" linear_model_matlab.o64 linear.o64 tron.o64 -llibmx -llibmex -llibmat -lcholmod -lblas
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
155
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
156 svmpredict_mex.mexw64 : svmpredict_mex.o64 svm.o64 svm_model_matlab.o64
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
157 $(CROSS64)$(CXX) -shared $(GNUMEX64)/mex.def -o "$@" -L$(GNUMEX64) -s "$<" svm_model_matlab.o64 svm.o64 -llibmx -llibmex -llibmat -lcholmod
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
158 svmtrain_mex.mexw64 : svmtrain_mex.o64 svm.o64 svm_model_matlab.o64
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
159 $(CROSS64)$(CXX) -shared $(GNUMEX64)/mex.def -o "$@" -L$(GNUMEX64) -s "$<" svm_model_matlab.o64 svm.o64 -llibmx -llibmex -llibmat -lcholmod
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
160
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
161 %.mexw64: %.o64
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
162 $(CROSS64)$(CXX) -shared $(GNUMEX64)/mex.def -o "$@" -L$(GNUMEX64) -s "$<" -llibmx -llibmex -llibmat -lcholmod -lgomp -lpthread
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
163