📄 art_gal.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 + -