# makefile MAKE V2.0 or higher
.autodepend

# set this to the relative location of the BINDUMP utility
BINDUMP = ..\MISC.!!!\BINDUMP

##############################################################################

.asm.obj:
    tasm /m $<

#############################################################################

house.exe:  housetga.dmp firetga.dmp house.obj
            tlink /x house
            pklite house

#############################################################################

housetga.dmp:   house.tga
                $(BINDUMP) house.tga housetga.dmp ImageData

#############################################################################

firetga.dmp:    fire.tga
                $(BINDUMP) fire.tga firetga.dmp FirePlace

#############################################################################
