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

📄 art_gal.mak

📁 自适应共振神经网络可以实现自动学习与分类具有自适应的功能
💻 MAK
字号:
# ------------------------------------------------------------------------- 
#                           The ART Gallery                                 
# ------------------------------------------------------------------------- 
# Art_Gal.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_Gal.dll, the dynamic linked libarary
# of The ART Gallery for the DOS platform.
# It requires 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_GAL.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_int.obj \
 art_ext.obj \
 art_dll.obj \
 art_gal.def

#		*Explicit Rules*
art_gal.dll: art_gal.cfg $(EXE_dependencies)
  $(TLINK) /v/x/c/P-/Twd/L$(LIBPATH) @&&|
c0dc.obj+
art_int.obj+
art_ext.obj+
art_dll.obj
art_gal.dll
		# no map file
mathwc.lib+
import.lib+
cwc.lib
art_gal.def
|
  RC  art_gal.dll
  IMPLIB ART_GAL.LIB ART_GAL.DLL

#		*Individual File Dependencies*
art_int.obj: art_gal.cfg art_int.c 

art_ext.obj: art_gal.cfg art_ext.c 

art_dll.obj: art_gal.cfg art_dll.c 

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


⌨️ 快捷键说明

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