📄 art_sim.mak
字号:
# -------------------------------------------------------------------------
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -