# Make file for Monitor Saver
# Compatible with Version 5.1 and 6.0 of the MSC Compiler

all: ms.exe

ms.res: ms.rc ms.h
    rc -r ms.rc

ms.obj: ms.c ms.h
    cl -c -W2 -AS -Gsw -Oas -Zpe ms.c

ms.exe: ms.obj ms.def
    link /NOD ms,,, libw slibcew, ms.def
    rc ms.res

ms.exe: ms.res
        rc ms.res
