home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / m / msc7.zip / MAKEFILE < prev    next >
Text File  |  1992-02-17  |  673b  |  27 lines

  1. # (C) Copyright 1992 Qualitas, Inc.  All rights reserved.
  2. #
  3. # Makefile for DPMI class library examples with Microsoft C++ 7.0
  4. #
  5. # The following tools are required and must be on your path
  6. #
  7. #    cl    7.00
  8. #    link    5.30
  9. #
  10. # Also, set your INCLUDE and LIB environment variables for the MS C 7.0
  11. # environment.
  12.  
  13. OBJS    = ..\lib\crt0dat.obj ..\lib\chkstk.obj
  14. C    = cl /I..\include /G2 /Gs /AS /Zp1 /c   $*.c
  15. CPP    = cl /I..\include /G2 /Gs /AS /Zp1 /c   $*.cpp
  16. LINK    = link /stack:8192 $*.obj $(OBJS),$*.exe,,..\lib\dpmi ..\lib\dpmiclas;
  17.  
  18. examples: xmem.exe xintr.exe xcept.exe xreal.exe hello.exe qsort.exe 
  19.  
  20. .cpp.exe:
  21.     $(CPP) 
  22.     $(LINK) 
  23. .c.exe:
  24.     $(C) 
  25.     $(LINK) 
  26.  
  27.