home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / maj / 4331 / demo / makefile next >
Makefile  |  1994-07-18  |  541b  |  25 lines

  1. #
  2. # This makefile has only been tested with Borland C++ 2.0 to date, and
  3. # assumes that a Borland compiler will be used; you may need to edit this
  4. # file before using it with a non-Borland compiler.
  5. #
  6.  
  7. .autodepend
  8.  
  9. CC          = bcc -c -ml -O -Z -d -r -G -a -2
  10. LINK        = tlink /x /c /yx
  11. LINK_DEBUG  = /v
  12. DEPENDFILES = tgedemo.obj
  13.  
  14.  
  15. .asm.obj:
  16.         $(ASM) $<
  17. .cpp.obj:
  18.         $(CC) $<
  19. .c.obj:
  20.         $(CC) $<
  21.  
  22.  
  23. tgedemo.exe:  $(DEPENDFILES)
  24.      $(LINK) c0l.obj tgedemo.obj, tgedemo.exe,, cl.lib ..\lib\bcl.lib
  25.