makefile

来自「一款不错的支持向量机程序」· 代码 · 共 33 行

TXT
33
字号
# Makefile for SVM-struct, 03.07.04CC = gccLD = gcc#CC = attolcc -mempro -perfpro -block -proc -- gcc#LD = attolcc -mempro -perfpro -block -proc -- gccall: svm_struct_noexesvm_struct_noexe: svm_struct_learn.o svm_struct_classify.o svm_struct_common.o svm_struct_main.o .PHONY: cleanclean:	rm -f *.o *.tcov *.d core gmon.out *.stackdump#----------------------##----  STRUCT SVM  ----##----------------------#svm_struct_common.o: svm_struct_common.c svm_struct_common.h ../svm_struct_api_types.h	$(CC) -c $(CFLAGS) svm_struct_common.c -o svm_struct_common.osvm_struct_learn.o: svm_struct_learn.c ../svm_light/svm_learn.h svm_struct_common.h ../svm_struct_api.h ../svm_struct_api_types.h	$(CC) -c $(CFLAGS) svm_struct_learn.c -o svm_struct_learn.osvm_struct_main.o: svm_struct_main.c ../svm_light/svm_common.h ../svm_light/svm_learn.h svm_struct_learn.h svm_struct_common.h ../svm_struct_api.h ../svm_struct_api_types.h	$(CC) -c $(CFLAGS) svm_struct_main.c -o svm_struct_main.osvm_struct_classify.o: svm_struct_classify.c svm_struct_common.h ../svm_struct_api_types.h ../svm_struct_api.h ../svm_light/svm_common.h 	$(CC) -c $(CFLAGS) svm_struct_classify.c -o svm_struct_classify.o

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?