makefile
来自「SVM_light是一种非常流行的支持向量机的java接口」· 代码 · 共 34 行
TXT
34 行
#
# makefile for svm_light
#
# Thorsten Joachims, 2002
#
# Thanks to Ralf Herbrich for the initial version.
#
all:
@echo ""
@echo "USAGE make [win|linux]"
@echo ""
linux:
make -f Makefile-linux
win:
make -f Makefile-windows
tidy:
rm -f *.o
rm -f donlp2/*.o
rm -f donlp2_c/*.o
rm -f pr_loqo/*.o
clean: tidy
rm -f linux-svm_learn*
rm -f linux-svm_classify*
rm -f libsvmlight.*
rm -f svmlight.dll
rm -f win-svm_learn*
rm -f win-svm_classify*
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?