1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-05-03 22:17:14 +08:00

9 lines
221 B
Makefile
Raw Normal View History

2014-05-05 21:47:56 +08:00
liblinear: tron.o linear.o blas.a
g++ -shared -o linear.dll tron.o linear.o blas/blas.a
tron.o: tron.cpp
g++ -c -fpic tron.cpp -o tron.o
linear.o: linear.cpp
g++ -c -fpic linear.cpp -o linear.o
blas.a:
make -C blas