home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_07 / makefile < prev    next >
Makefile  |  1993-04-06  |  405b  |  22 lines

  1. !ifdef NDEBUG
  2. .c.obj :
  3.     bcc -c -P -DNDEBUG -Ox -Z $*.c
  4. !else
  5. .c.obj :
  6.     bcc -c -P -w+ -k -N -Od -v $*.c
  7. !endif
  8.  
  9. filetest.exe : filetest.obj unixfile.obj stdfile.obj file.obj objects.obj
  10.     tlink -v c0s filetest unixfile stdfile file objects,filetest,,cs
  11.  
  12. objects.obj : objects.c
  13.  
  14. file.obj : file.c
  15.  
  16. stdfile.obj : stdfile.c
  17.  
  18. unixfile.obj : unixfile.c
  19.  
  20. filetest.obj : filetest.c
  21.  
  22.