home *** CD-ROM | disk | FTP | other *** search
/ The Education Master 1994 (4th Edition) / EDUCATIONS_MASTER_4TH_EDITION.bin / files / progmisc / qparser2 / lib / m < prev    next >
Encoding:
Text File  |  1993-11-07  |  757 b   |  32 lines

  1. #  make file for lib: MICROSOFT C
  2.  
  3. #  NOTE: The Microsoft C executables must be
  4. #  accessible through the following definitions.  CHANGE THEM to
  5. #  suit your environment.  The compact model seems to work although
  6. #  the executable is often larger than 64K
  7.  
  8. CDIR=C:\MCC
  9. MODEL=L
  10.  
  11. # compiler options.  Use /Zi, /Od for Microsoft's debugger
  12. COPTS=/A$(MODEL) /Zi /Od
  13.  
  14. qalloc.obj: qalloc.c
  15.   $(CDIR)\bin\cl /c $(COPTS) qalloc.c
  16.   $(CDIR)\bin\lib qp.lib -+qalloc;
  17.  
  18. sets.obj: sets.c
  19.   $(CDIR)\bin\cl /c $(COPTS) sets.c
  20.   $(CDIR)\bin\lib qp.lib -+sets;
  21.  
  22. respf.obj: respf.c
  23.   $(CDIR)\bin\cl /c $(COPTS) respf.c
  24.   $(CDIR)\bin\lib qp.lib -+respf;
  25.  
  26. help.obj: help.c
  27.   $(CDIR)\bin\cl /c $(COPTS) help.c
  28.   $(CDIR)\bin\lib qp.lib -+help;
  29.  
  30.  
  31.  
  32.