home *** CD-ROM | disk | FTP | other *** search
/ Graphics Programming Black Book (Special Edition) / BlackBook.bin / disk1 / source / chapter53 / xsharp15.exe / MAKEFILE < prev    next >
Text File  |  1994-12-16  |  673b  |  32 lines

  1. # Make file for 3D cube rotation example, with backface
  2. # removal and user translation & rotation control.
  3.  
  4. .c.obj:
  5.    bcc -c $<
  6.  
  7. .asm.obj:
  8.    tasm -ml -zi $*
  9.  
  10. xs.exe: xsharp.obj approt.obj initfix.obj movepoly.obj drawpobj.obj \
  11.    initcube.obj draw.obj fillcnvx.obj scan.obj mode.obj showpage.obj \
  12.    fillrect.obj fixed.obj initball.obj olist.obj xfproj.obj
  13.   bcc -exs.exe @&&|
  14.   xsharp.obj \
  15.   approt.obj \
  16.   initfix.obj \
  17.   movepoly.obj \
  18.   drawpobj.obj \
  19.   initcube.obj \
  20.   draw.obj \
  21.   fillcnvx.obj \
  22.   scan.obj \
  23.   mode.obj \
  24.   showpage.obj \
  25.   fillrect.obj \
  26.   fixed.obj \
  27.   initball.obj \
  28.   olist.obj \
  29.   xfproj.obj \
  30.   noehs.lib
  31. |
  32.