home *** CD-ROM | disk | FTP | other *** search
/ TopWare 18: Liquid / Image.iso / liquid / top1181 / makefile < prev    next >
Makefile  |  1994-03-05  |  717b  |  29 lines

  1. #
  2. # Use this makefile to create TGEDEMO.EXE with your compiler.  This
  3. # makefile assumes that BCL.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. CC          = bcc -c -ml -O -Z -d -r -G -a -2
  14. LINK        = tlink /x /c /yx
  15. LINK_DEBUG  = /v
  16. DEPENDFILES = tgedemo.obj
  17.  
  18.  
  19. .asm.obj:
  20.         $(ASM) $<
  21. .cpp.obj:
  22.         $(CC) $<
  23. .c.obj:
  24.         $(CC) $<
  25.  
  26.  
  27. tgedemo.exe:  $(DEPENDFILES)
  28.      $(LINK) c0l.obj tgedemo.obj, tgedemo.exe,, cl.lib ..\lib\bcl.lib
  29.