⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 开源项目BOGOFILTER的源码.该项目实现BAYES文本分类算法,不过该源码只支持英文的分词
💻
字号:
# Makefile for the RISC OS version of gsl# Define which compiler to use:CC = cc#CC = gcc########################################## DO NOT EDIT ANYTHING BELOW THIS LINE! ##########################################ifeq (${CC},cc)CC = ccLD = linkAR = libfileDEPEND = -depend !DependCC_FLAGS = -Wdp -throwback -Otime -I^,@,Unix: -JUnix: -D__riscos__ -DHAVE_CONFIG_HUNIXLIB = Unix:o.UnixLibelseifeq (${CC},gcc)CC = gccLD = gccAR = arCC_FLAGS = -mthrowback -O3 -I^ -I@ -D__riscos__ -DHAVE_CONFIG_Helse# No other compiler supported!endifendifCDF_OBJS = cdf.o.chisq \	cdf.o.gammaERR_OBJS = err.o.error \	err.o.streamSPECFUNC_OBJS = specfunc.o.elementary \	specfunc.o.erfc \	specfunc.o.exp \	specfunc.o.expint \	specfunc.o.gamma_inc \	specfunc.o.log \	specfunc.o.psi \	specfunc.o.trig \	specfunc.o.zetaSYS_OBJS = sys.o.coerce \	sys.o.fdiv \	sys.o.infnan \	sys.o.pow_int.INIT:	@cdir cdf.o	@cdir err.o	@cdir specfunc.o	@cdir sys.o## Rule Patterns ##.SUFFIXES:	.c .o.c.o:	$(CC) $(CC_FLAGS) $(DEPEND) -c -o $@ $<# Static dependencies:libgsl: $(CDF_OBJS) $(ERR_OBJS) $(SPECFUNC_OBJS) $(SYS_OBJS)	$(AR) $(AR_FLAGS) -c -o $@ $(CDF_OBJS) $(ERR_OBJS) $(SPECFUNC_OBJS) $(SYS_OBJS)clean:	-ifthere libgsl then wipe libgsl ~CFR~V	-ifthere cdf.o.* then wipe cdf.o.* ~CFR~V	-ifthere err.o.* then wipe err.o.* ~CFR~V	-ifthere specfunc.o.* then wipe specfunc.o.* ~CFR~V	-ifthere sys.o.* then wipe sys.o.* ~CFR~V# Dynamic dependencies:

⌨️ 快捷键说明

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