art_sim.mak

来自「自适应共振神经网络可以实现自动学习与分类具有自适应的功能」· MAK 代码 · 共 78 行

MAK
78
字号
# ------------------------------------------------------------------------- 
#                           The ART Gallery                                 
# ------------------------------------------------------------------------- 
# Art_Sim.mak
#    Version:     1.0                                                          
#    Written By:  Lars H. Liden         laliden@cns.bu.edu                  
#    Last Update: 8/02/95                                                   
#                                                                           
# The following is a makefile for Art_Sim.c for the DOS platform which
# uses Borland C++
#                                                                           
# Please see Art_Doc.txt for a full documentation.                          
#                                                                           
# Send all bug reports to laliden@cns.bu.edu                                
# ------------------------------------------------------------------------- 
.AUTODEPEND

#		*Translator Definitions*
CC = bcc +ART_SIM.CFG
TASM = TASM
TLIB = tlib
TLINK = tlink
LIBPATH = C:\BORLANDC\LIB
INCLUDEPATH = C:\BORLANDC\INCLUDE


#		*Implicit Rules*
.c.obj:
  $(CC) -c {$< }

.cpp.obj:
  $(CC) -c {$< }

#		*List Macros*


EXE_dependencies =  \
 art_ext.obj \
 art_int.obj \
 art_sim.obj

#		*Explicit Rules*
art_sim.exe: art_sim.cfg $(EXE_dependencies)
  $(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
c0c.obj+
art_ext.obj+
art_int.obj+
art_sim.obj
art_sim
		# no map file
emu.lib+
mathc.lib+
cc.lib
|


#		*Individual File Dependencies*
art_ext.obj: art_sim.cfg art_ext.c 

art_int.obj: art_sim.cfg art_int.c 

art_sim.obj: art_sim.cfg art_sim.c 

#		*Compiler Configuration File*
art_sim.cfg: art_sim.mak
  copy &&|
-mc
-v
-vi-
-wpro
-weas
-wpre
-I$(INCLUDEPATH)
-L$(LIBPATH)
| art_sim.cfg


⌨️ 快捷键说明

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