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

17 lines
275 B
Makefile
Raw Normal View History

2014-05-09 21:29:45 +08:00
liblinear: tron.o linear.o blas.a
$(CXX) -shared -o linear.dll tron.o linear.o blas/blas.a
2014-05-05 21:47:56 +08:00
tron.o: tron.cpp
2014-05-09 21:29:45 +08:00
$(CXX) -fpic -c tron.cpp -o tron.o
2014-05-05 21:47:56 +08:00
linear.o: linear.cpp
2014-05-09 21:29:45 +08:00
$(CXX) -fpic -c linear.cpp -o linear.o
2014-05-05 21:47:56 +08:00
blas.a:
make -C blas
2014-05-09 21:29:45 +08:00
clean:
2014-05-09 21:29:45 +08:00
$(RM) *.o
make -C blas clean