##########################
## User settable macros ##
##########################

Compiler = wpp386

Include=.;$(%WATCOM)\h;\sprachen\c\h;\sprachen\c\demo

Compiler_Options = -os -d2
#Compiler_Options = /bt=dos4g /d3 /5s /e10 /mf /w1 /fp5 /xs
Linker_options   = debug all system pmodew option verbose

Exe_file     = spotlite.exe

Object_files =                  spotlite.obj &
                                engine.obj &
                                \sprachen\c\demo\vesa.obj &
                                \sprachen\c\demo\vesac.obj &
                                incdata.obj &
                                rxm.obj &
                                gus.obj &
                                sb.obj &
                                awe.obj &
                                int.obj &
                                sc6.obj



####################
## Makefile rules ##
####################

$(Exe_file): $(Object_files)
             *wlink $(Linker_options) name $(Exe_file) &
              file {$(Object_files)}

.asm.obj:
        tasm $< /ml /m5 /zi

.cpp.obj:
        *$(Compiler) $(Compiler_Options) -I$(Include) $<
