Listing 4
#######################################################
##  makefile                                         ##
## -- Project file for install loader program.       ##
#######################################################
all:    install.exe

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

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


