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

📄 makefile.dos

📁 很经典的神经网络源程序,希望大家多多交流
💻 DOS
字号:
#
#
#	NOTE: this make file is for DOS only
#
#	IF your platform is UNIX, please use the makefile makefile.ux
#
#

DRIVE = d:
LIB = $(DRIVE)\TC\LIB
INC = $(DRIVE)\TC\INCLUDE

final:	bprecog.exe bptrain.exe

bprecog.exe:	bprecog.c nntrain.obj nncreat.obj nnerror.obj nndump.obj cparser.obj bprecogv.h random.obj random.h
	tcc -mm -I$(INC) -L$(LIB) bprecog.c nntrain.obj nncreat.obj nnerror.obj nndump.obj cparser.obj random.obj

bptrain.exe:	bptrain.c nntrain.obj nncreat.obj nnerror.obj nndump.obj cparser.obj bptrainv.h random.obj random.h timer.obj
	tcc -mm -I$(INC) -L$(LIB) bptrain.c nntrain.obj nncreat.obj nnerror.obj nndump.obj cparser.obj random.obj timer.obj

nntrain.obj:	nntrain.c nntype.h nntrain.h nnmath.h nndump.h
	tcc -mm -c -v -I$(INC) nntrain.c

nncreat.obj:	nncreat.c nntype.h nnerror.h nncreat.h random.h
	tcc -mm -c -v -I$(INC) nncreat.c

nnerror.obj:	nnerror.c nnerror.h
	tcc -mm -c -v -I$(INC) nnerror.c

nndump.obj:	nndump.c nntype.h nndump.h
	tcc -mm -c -v -I$(INC) nndump.c

cparser.obj:	cparser.c cparser.h
	tcc -mm -c -v -I$(INC) cparser.c

random.obj:	random.c random.h
	tcc -mm -c -v -I$(INC) random.c

timer.obj:	timer.c timer.h
	tcc -mm -c -v -I$(INC) timer.c

⌨️ 快捷键说明

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