home *** CD-ROM | disk | FTP | other *** search
-
- if %1 == c goto CLEAN
- if %1 == b goto BUILD
- if %1 == a goto BUILDALL
- cl386 -c %1 >buildres.ult 2>&1
- goto end
- :CLEAN
- del *.obj
- del *.rbj
- del *.res
- del *.ult
- goto end2
- :BUILD
- nmake >buildres.ult 2>&1
- goto end
- :BUILDALL
- nmake -a >buildres.ult 2>&1
- goto end
- :END
- winner.exe buildres.ult
- :END2
- exit