Listing 8

#######################################################
##  makefile                                         ##
## -- Project file for scroll program.               ##
#######################################################
all:    scroll.exe

scroll.obj: scroll.c
    cl -c -AM -G2w -Od -Zdpe -W3 scroll.c

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

