#Makefile to make the example file, using the Watcom C++ 32-bit compiler.
#Made by Tommy Grandefors
#January 1997

Compiler         = wpp386
CompilerOptions  = /oatnx /mf /4r /e6
Assembler        = tasm
AssemblerOptions = /q
LinkerOptions    = OPTION MAXERRORS=5
System           = pmodew
Library          = 
ExeFile          = SVGA32.EXE

ObjectFiles      = svga.obj     &
                   main.obj

$(ExeFile): $(ObjectFiles)
 *wlink system $(System) $(LinkerOptions) name $(ExeFile) file {$(ObjectFiles)}

.cpp.obj:
 *$(Compiler) $(CompilerOptions) $<


