home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / dobbs / v17n02 / turtle.exe / MAKEFILE < prev    next >
Encoding:
Text File  |  1991-08-01  |  1.1 KB  |  31 lines

  1. ######################################################
  2. #                                                    #
  3. # Makefile for TURTLE                                #
  4. #                                                    #
  5. # Use NMAKE to compile                               #
  6. #                                                    #
  7. ######################################################
  8.  
  9. all : turtle.exe tsave.dll
  10.  
  11. turtle.exe : turtle.obj tcmds.obj xci.obj texpr.obj
  12.         cl -AL -Lp turtle.obj tcmds.obj xci.obj \
  13.            texpr.obj c:\run286\lib\graphp.obj \
  14.            LLIBPE.LIB GRAPHICS.LIB
  15.         implib turtle.lib turtle.exe
  16.  
  17. turtle.obj : turtle.c xci.h turtle.h
  18.         cl -AL -Ox -G2 -c turtle.c
  19.  
  20. tcmds.obj : tcmds.c xci.h turtle.h
  21.         cl -AL -Ox -G2 -c tcmds.c
  22.  
  23. texpr.obj : texpr.c turtle.h
  24.         cl -AL -Ox -G2 -c texpr.c
  25.  
  26. xci.obj : xci.c xci.h
  27.         cl -AL -Ox -G2 -c xci.c
  28.  
  29. tsave.dll : tsave.c dllstart.asm turtle.h xci.h turtle.lib
  30.         cl -ML -Gs -Lp -Ox -G2 tsave.c dllstart.asm turtle.lib
  31.