kolibrios-fun/programs/other/graph/build.bat

9 lines
315 B
Batchfile
Raw Permalink Normal View History

call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
@cl /c /Od /nologo /GS- /GR- /fp:fast *.cpp
@link /nologo /manifest:no /entry:crtStartUp /subsystem:native /base:0 /fixed /align:16 /nodefaultlib hello.obj *.obj
@del graph
@pe2kos hello.exe graph
@del hello.exe
@del *.obj
pause