Compiler = wpp386
Tasm = tasm

Compiler_Options = -mf -onatx -oe=32000 -s -zq -w3 -d2 -5r
asmflags = /m40 /q /t /mx /zn

Tasm_Options=/t
Linker_options   = option quiet debug all

System       = dos4g

Exe_file     = da.exe

Object_files = disasm.obj

## Makefile rules ##
$(Exe_file): $(Object_files)
             *wlink system $(System) $(Linker_Options) name $(Exe_file) &
                        file {$(Object_files)}

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

.asm.obj:
    tasm   $(asmflags) $^&
