home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / TGE129D / TGEDEMO.MAK < prev    next >
Text File  |  1993-09-12  |  752b  |  31 lines

  1. #
  2. # Use this makefile to create TGEDEMO.EXE with your compiler.  This
  3. # makefile assumes that TGE.LIB is on your system; if it isn't, use
  4. # ..\LIB\MAKELIB.BAT to build it.
  5. #
  6. # This makefile has only been tested with Borland C++ 2.0 to date, and
  7. # assumes that a Borland compiler will be used; you may need to edit this
  8. # file before using it with a non-Borland compiler.
  9. #
  10.  
  11. .autodepend
  12.  
  13. MODEL       = l
  14. CC          = bcc -c -m$(MODEL)
  15. LINK        = tlink /x /c /yx
  16. LINK_DEBUG  = /v
  17. DEPENDFILES = tgedemo.obj    \
  18.               ..\lib\tge.lib
  19.  
  20.  
  21. .asm.obj:
  22.         $(ASM) $<
  23. .cpp.obj:
  24.         $(CC) $<
  25. .c.obj:
  26.         $(CC) $<
  27.  
  28.  
  29. tgedemo.exe:  $(DEPENDFILES)
  30.      $(LINK) c0l.obj tgedemo.obj, tgedemo.exe,, cl.lib ..\lib\tge.lib
  31.