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 >
Wrap
Text File
|
1992-02-17
|
673b
|
27 lines
# (C) Copyright 1992 Qualitas, Inc. All rights reserved.
#
# Makefile for DPMI class library examples with Microsoft C++ 7.0
#
# The following tools are required and must be on your path
#
# cl 7.00
# link 5.30
#
# Also, set your INCLUDE and LIB environment variables for the MS C 7.0
# environment.
OBJS = ..\lib\crt0dat.obj ..\lib\chkstk.obj
C = cl /I..\include /G2 /Gs /AS /Zp1 /c $*.c
CPP = cl /I..\include /G2 /Gs /AS /Zp1 /c $*.cpp
LINK = link /stack:8192 $*.obj $(OBJS),$*.exe,,..\lib\dpmi ..\lib\dpmiclas;
examples: xmem.exe xintr.exe xcept.exe xreal.exe hello.exe qsort.exe
.cpp.exe:
$(CPP)
$(LINK)
.c.exe:
$(C)
$(LINK)