home *** CD-ROM | disk | FTP | other *** search
/ Graphics Programming Black Book (Special Edition) / BlackBook.bin / disk1 / xsharp22 / makefile < prev    next >
Encoding:
Makefile  |  1997-06-18  |  849 b   |  40 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. demo1.exe: demo1.obj approt.obj initfix.obj moveobj.obj drawpobj.obj \
  11.    draw.obj fillcnvx.obj scan.obj mode.obj showpage.obj \
  12.    fillrect.obj fixed.obj initball.obj olist.obj xfproj.obj globals.obj \
  13.    color.obj initpal.obj lighting.obj initligh.obj drawtexp.obj \
  14.    drawtex.obj
  15.   bcc @&&|
  16.   demo1.obj \
  17.   approt.obj \
  18.   initfix.obj \
  19.   moveobj.obj \
  20.   drawpobj.obj \
  21.   draw.obj \
  22.   fillcnvx.obj \
  23.   scan.obj \
  24.   mode.obj \
  25.   showpage.obj \
  26.   fillrect.obj \
  27.   fixed.obj \
  28.   initball.obj \
  29.   olist.obj \
  30.   xfproj.obj \
  31.   globals.obj \
  32.   color.obj \
  33.   initpal.obj \
  34.   lighting.obj \
  35.   initligh.obj \
  36.   drawtexp.obj \
  37.   drawtex.obj \
  38.   noehs.lib
  39. |
  40.