home *** CD-ROM | disk | FTP | other *** search
- # make file for lib: MICROSOFT C
-
- # NOTE: The Microsoft C executables must be
- # accessible through the following definitions. CHANGE THEM to
- # suit your environment. The compact model seems to work although
- # the executable is often larger than 64K
-
- CDIR=C:\MCC
- MODEL=L
-
- # compiler options. Use /Zi, /Od for Microsoft's debugger
- COPTS=/A$(MODEL) /Zi /Od
-
- qalloc.obj: qalloc.c
- $(CDIR)\bin\cl /c $(COPTS) qalloc.c
- $(CDIR)\bin\lib qp.lib -+qalloc;
-
- sets.obj: sets.c
- $(CDIR)\bin\cl /c $(COPTS) sets.c
- $(CDIR)\bin\lib qp.lib -+sets;
-
- respf.obj: respf.c
- $(CDIR)\bin\cl /c $(COPTS) respf.c
- $(CDIR)\bin\lib qp.lib -+respf;
-
- help.obj: help.c
- $(CDIR)\bin\cl /c $(COPTS) help.c
- $(CDIR)\bin\lib qp.lib -+help;
-
-
-