home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / CSWITCH.ZIP / MAKETST < prev    next >
Text File  |  1990-08-14  |  791b  |  42 lines

  1. #
  2. # MAKE file for Microsoft C, to make CSWITCH sample programs.
  3. #
  4. # To invoke :
  5. #  C:>make maketst
  6. #
  7.  
  8. CFLAGS = /AL /Gs /c
  9.  
  10. test1.exe : test1.c
  11.     cl /AS /c test1.c
  12.     link /E test1 smtc;
  13.  
  14. test2.exe : test2.c
  15.     cl /AS /c test2.c
  16.     link /E test2 smtc;
  17.  
  18. test3.exe : test3.c
  19.     cl /AS /c test3.c
  20.     link /E test3 smtc;
  21.  
  22. test4.exe : test4.c
  23.     cl /AS /c test4.c
  24.     link /E test4 smtc;
  25.  
  26. test5.exe : test5.c
  27.     cl /AS /c test5.c
  28.     link /E test5 smtc;
  29.  
  30. mt.obj : mt.c tcb.h
  31.     cl $(CFLAGS) mt.c
  32.  
  33. mttest.obj : mttest.c tcb.h
  34.     cl $(CFLAGS) mttest.c
  35.  
  36. mt.exe : cswitch1.obj mt.obj cswitch2.obj lmtc.obj
  37.     link /E mt cswitch1 cswitch2 lmtc;
  38.  
  39. mttest.exe : cswitch1.obj mttest.obj cswitch2.obj lmtc.obj
  40.     link /E mttest cswitch1 cswitch2 lmtc;
  41.  
  42.