Advertisement
FlyFar

make.bat

Jun 6th, 2023
785
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.36 KB | Cybersecurity | 0 0
  1. @echo off
  2.  
  3. del %1.obj 2>nul
  4. REM del %1.exe >nul
  5. nasmw -O9 -fwin32 %2 %3 %4 %5 %1.asm
  6. c:\masm32\bin\link /NOLOGO /RELEASE /entry:entry /subsystem:windows /STACK:2097152,1000 %1.obj c:\masm32\lib\kernel32.lib c:\masm32\lib\wininet.lib c:\masm32\lib\wsock32.lib c:\masm32\lib\user32.lib c:\masm32\lib\MSVCRT.LIB c:\masm32\lib\advapi32.lib /OUT:%1.exe
  7. del %1.obj 2>nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement