annotate extra/NaN/src/Makefile @ 12384:5d1eadad45d4 octave-forge

tsa, nan: fix built for mex4m
author schloegl
date Wed, 26 Feb 2014 17:53:16 +0000
parents a06636a6401d
children 5fbbb9986f8e
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/
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
21 CROSS = $(HOME)/src/mingw-cross-env/usr/bin/i686-pc-mingw32-
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
22 CROSS64 = $(HOME)/src/mce-w64/usr/bin/x86_64-w64-mingw32-
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
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
40 MEX_OPTION += -lgomp CC\#$(CXX) CXX\#$(CXX) CFLAGS\#"$(CFLAGS) " CXXFLAGS\#"$(CFLAGS) "
7912
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
41 MATMEX = $(MATLABDIR)/bin/mex $(MEX_OPTION)
6560
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
42
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
43 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
44
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
45 ### per default only the mex-files for octave are built
8067
6c6cb24503b9 fix warnings when ML is not available
schloegl
parents: 8066
diff changeset
46 mex4o octave: $(PROGS)
8068
12bd31f8727c fix building mex4m
schloegl
parents: 8067
diff changeset
47
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
48
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
49 ### Matlab configuration - search for a matlab directory if not defined above
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
50 ifndef MATLABDIR
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
51 ifneq (,$(shell ls -1 /usr/local/ |grep MATLAB))
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
52 # use oldest, typically mex-files a compatible with newer Matlab versions
12384
5d1eadad45d4 tsa, nan: fix built for mex4m
schloegl
parents: 12383
diff changeset
53 MATLABDIR=/usr/local/MATLAB/$(shell ls -1t /usr/local/MATLAB/ |grep "^R*" |head -1)
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
54 # alternatively, use latest matlab version
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
55 #MATLABDIR=$(shell ls -dt1 /usr/local/MATLAB/R* |head -1)
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
56 endif
8067
6c6cb24503b9 fix warnings when ML is not available
schloegl
parents: 8066
diff changeset
57 endif
11098
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
58
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
59 ### if the MATLABDIR has been found or defined
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
60 ifneq (,MATLABDIR)
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
61 ifneq (,$(shell ls -1 $(MATLABDIR)/bin/mexext))
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
62 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
63 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
64 endif
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
65 endif
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
66
4becffbdb0ea fix for (presumbably a newer version of ) gnu make; Matlab: search for default installation directory
schloegl
parents: 10621
diff changeset
67
7912
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
68 mexw32 win32: $(patsubst %.mex, %.mexw32, $(PROGS))
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
69 mexw64 win64: $(patsubst %.mex, %.mexw64, $(PROGS))
8068
12bd31f8727c fix building mex4m
schloegl
parents: 8067
diff changeset
70 all: octave win32 win64 mex4m
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
71
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
72 clean:
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
73 -$(RM) *.o *.obj *.o64 core octave-core *.oct *~ *.mex*
3901
0c83673d2cbe Fix broken Makefile
adb014
parents: 2968
diff changeset
74
10621
7740a34f1dac fix message on missing mexext
schloegl
parents: 9421
diff changeset
75 #$(PROGS): Makefile
8139
3fad4ff49e91 svmpredict_mex: remove command line output; some clean up
schloegl
parents: 8101
diff changeset
76
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
77 #########################################################
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
78 # Octave, MATLAB on Linux
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
79 #########################################################
2414
19251cd2753b Latest package manager mega patch, but not the last
adb014
parents:
diff changeset
80 %.oct: %.cc
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
81 mkoctfile$(OCTAVE_VERSION) "$<"
2968
e49fc39e8ee0 Add "clean" rules to makefiles and discard exit status
goffioul
parents: 2414
diff changeset
82
6549
41e9854fe26d use *.cpp instead of *.c
schloegl
parents: 6547
diff changeset
83 %.mex: %.cpp
12384
5d1eadad45d4 tsa, nan: fix built for mex4m
schloegl
parents: 12383
diff changeset
84 $(OCTMEX) "$<" -lgomp
6549
41e9854fe26d use *.cpp instead of *.c
schloegl
parents: 6547
diff changeset
85 %.$(MEX_EXT): %.cpp
12384
5d1eadad45d4 tsa, nan: fix built for mex4m
schloegl
parents: 12383
diff changeset
86 $(MATMEX) "$<" -lgomp
6547
schloegl
parents: 5579
diff changeset
87
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
88 svmtrain_mex.mex svmpredict_mex.mex: svmtrain_mex.cpp svm.h svm.cpp svm_model_matlab.c svmpredict_mex.cpp
8101
5dfc952387ba workaround to avoid need for path to mex.h (INCOCTAVE)
schloegl
parents: 8068
diff changeset
89 $(CXX) $(CFLAGS) -c svm.cpp
5dfc952387ba workaround to avoid need for path to mex.h (INCOCTAVE)
schloegl
parents: 8068
diff changeset
90 #$(CC) $(CFLAGS) $(INCOCTAVE) -c svm_model_matlab.c
5dfc952387ba workaround to avoid need for path to mex.h (INCOCTAVE)
schloegl
parents: 8068
diff changeset
91 env CC=$(CXX) $(OCTMEX) svmtrain_mex.cpp svm.o svm_model_matlab.c
5dfc952387ba workaround to avoid need for path to mex.h (INCOCTAVE)
schloegl
parents: 8068
diff changeset
92 env CC=$(CXX) $(OCTMEX) svmpredict_mex.cpp svm.o svm_model_matlab.c
6549
41e9854fe26d use *.cpp instead of *.c
schloegl
parents: 6547
diff changeset
93
8139
3fad4ff49e91 svmpredict_mex: remove command line output; some clean up
schloegl
parents: 8101
diff changeset
94 svmtrain_mex.$(MEX_EXT) svmpredict_mex.$(MEX_EXT): svmtrain_mex.cpp svm.h svm.cpp svm_model_matlab.c svmpredict_mex.cpp
6555
9bd1a8fcffd7 libSVM: fix for Matlab
schloegl
parents: 6554
diff changeset
95 $(CXX) $(CFLAGS) -I $(MATLABDIR)/extern/include -c svm.cpp
6586
f1e5407f7bd1 compilation of SVMTRAIN fixed
schloegl
parents: 6563
diff changeset
96 $(CC) $(CFLAGS) -I $(MATLABDIR)/extern/include -c svm_model_matlab.c
6552
37ebea0d2428 build for octave must be the default, matlab build is optional
schloegl
parents: 6549
diff changeset
97 $(MATMEX) svmtrain_mex.cpp svm.o svm_model_matlab.o
6554
7fa067e9944d add support for non-linear SVM and 1-1 scheme
schloegl
parents: 6552
diff changeset
98 $(MATMEX) svmpredict_mex.cpp svm.o svm_model_matlab.o
6547
schloegl
parents: 5579
diff changeset
99
6588
98a8d8e4dd44 fix make liblinear svm
schloegl
parents: 6586
diff changeset
100 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
101 $(CC) $(CFLAGS) -I $(MATLABDIR)/extern/include -c linear_model_matlab.c
6588
98a8d8e4dd44 fix make liblinear svm
schloegl
parents: 6586
diff changeset
102 $(MATMEX) -lblas train.c tron.o linear.o linear_model_matlab.o
6563
4b3ccb63b4cf fix for ML*
schloegl
parents: 6562
diff changeset
103 #$(MATMEX) -lblas predict.c tron.o linear.o linear_model_matlab.o
6560
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
104
6588
98a8d8e4dd44 fix make liblinear svm
schloegl
parents: 6586
diff changeset
105 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
106 env CC=$(CXX) $(OCTMEX) -lblas train.c tron.o linear.o linear_model_matlab.c
6563
4b3ccb63b4cf fix for ML*
schloegl
parents: 6562
diff changeset
107 #env CC=$(CXX) $(OCTMEX) -lblas predict.c tron.o linear.o linear_model_matlab.o
6560
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
108
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
109 linear.o: linear.cpp linear.h
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
110 $(CXX) $(CFLAGS) -c linear.cpp
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
111
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
112 tron.o: tron.cpp tron.h
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
113 $(CXX) $(CFLAGS) -c tron.cpp
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
114
1170c9d6d1c4 method LibLinear is included
schloegl
parents: 6556
diff changeset
115
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
116 #########################################################
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
117 # MATLAB/WIN32
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
118 #########################################################
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
119 %.obj: %.cpp
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
120 $(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
121 %.obj: %.c
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
122 $(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
123
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
124 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
125 $(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
126
7912
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
127 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
128 $(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
129 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
130 $(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
131
7912
14021a3f31a6 fix (cross-)compilation for MEXW32 target
schloegl
parents: 7899
diff changeset
132 %.mexw32: %.obj
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
133 $(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
134
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
135
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
136
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
137 #########################################################
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
138 # MATLAB/WIN64
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
139 #########################################################
7899
07e96b66779f add support for WIN32 cross-compilation
schloegl
parents: 7802
diff changeset
140
8066
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
141 ## ToDO: fix OpenMP support: currently -fopenmp causes Matlab to crash
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
142 %.o64: %.cpp
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
143 $(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
144 %.o64: %.c
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
145 $(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
146
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
147 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
148 $(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
149
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
150 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
151 $(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
152 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
153 $(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
154
8d8da31799c0 add support for building mexw64
schloegl
parents: 8037
diff changeset
155 %.mexw64: %.o64
12383
a06636a6401d nan: avoid spurios error messages when no Matlab is installed
schloegl
parents: 11098
diff changeset
156 $(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
157