sources = root.zzz system.zzz thing.zzz exit.zzz room.zzz \
          player.zzz prog.zzz wiz.zzz note.zzz

all: $(sources)
    copy out.db core.db

.oom.zzz:
    oom out.db temp.db -f $< -c
    del out.db
    ren temp.db out.db
    echo Compiled successfully > $*.zzz

clean:
    del *.zzz *.log *.db
    oom - minimal.db
    copy minimal.db out.db

