#**************************************
# Restart Make File
#**************************************

restart.exe: restart.obj restart.def restart.res
        link restart, /align:16, NUL, /nod slibcew libw, restart
        rc restart.res

#*****************************************************
# Use -Ow option to optimize or -Od for fast compile!
#*****************************************************
restart.obj: restart.c
        cl -c -G2sw -Ow -W2 -Zp restart.c

restart.res: restart.rc
        rc -r restart.rc
        
