home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 306_01 / thread.mk < prev    next >
Text File  |  1991-02-21  |  454b  |  23 lines

  1. # make file for Turbo C++ or Microsoft C
  2.  
  3. .c.obj :
  4.     cl -c -Gs -DNDEBUG $*.c
  5. #    tcc -c -DNDEBUG $*.c
  6.  
  7. all : test.exe bench.exe
  8.  
  9. test.exe : test.obj thread.obj
  10.     cl test.obj thread.obj /link /ST:4096
  11. #    tcc test.obj thread.obj
  12.  
  13. bench.exe : bench.obj thread.obj
  14.     cl bench.obj thread.obj /link /ST:4096
  15. #    tcc bench.obj thread.obj
  16.  
  17. test.obj : test.c thread.h
  18.  
  19. bench.obj : bench.c thread.h
  20.  
  21. thread.obj : thread.c thread.h
  22.  
  23.