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

Compiler = wcc386

Include=.;$(%WATCOM)\h;

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     = xm2wav.exe

Object_files = xm2rxm.obj &
               rxm.obj &
               gus.obj &
               sb.obj &
               awe.obj &
               wav.obj &
               int.obj &
               \sprachen\c\h\file.obj &
               \sprachen\c\h\key.obj




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

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

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

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