
#######################################################
##  makefile                                         ##
## -- Project file for textmode program.             ##
#######################################################
all:    textmode.exe texttsr.exe

textmode.obj: textmode.c texttsr.h
    cl -c -AM -G2w -Od -Zdpe -W3 -DSTRICT textmode.c

texttsr.exe: texttsr.c texttsr.h
	cl -AS -W3 -Zi texttsr.c

textmode.exe: textmode.obj textmode.def textmode.rc
    link /NOD/m textmode,,, libw mlibcew, textmode.def
    mapsym textmode
    rc textmode

