home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Programming Black Book (Special Edition)
/
BlackBook.bin
/
disk1
/
source
/
chapter53
/
xsharp15.exe
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1994-12-16
|
673b
|
32 lines
# Make file for 3D cube rotation example, with backface
# removal and user translation & rotation control.
.c.obj:
bcc -c $<
.asm.obj:
tasm -ml -zi $*
xs.exe: xsharp.obj approt.obj initfix.obj movepoly.obj drawpobj.obj \
initcube.obj draw.obj fillcnvx.obj scan.obj mode.obj showpage.obj \
fillrect.obj fixed.obj initball.obj olist.obj xfproj.obj
bcc -exs.exe @&&|
xsharp.obj \
approt.obj \
initfix.obj \
movepoly.obj \
drawpobj.obj \
initcube.obj \
draw.obj \
fillcnvx.obj \
scan.obj \
mode.obj \
showpage.obj \
fillrect.obj \
fixed.obj \
initball.obj \
olist.obj \
xfproj.obj \
noehs.lib
|