NO

Author Topic: Batch build file creator  (Read 243 times)

Offline Vortex

  • Member
  • *
  • Posts: 845
    • http://www.vortex.masmcode.com
Batch build file creator
« on: October 20, 2024, 11:20:43 AM »
Hello,

Here is a simple batch build file creator for 32-bit projects.

Code: [Select]
Usage : MakeBat srcfile.asm [subsystem]
Subsystem is cons or gui

Let's assume that we would like to create a batch file to assemble Test.asm , a console application project :

Code: [Select]
MakeBat.exe Test.asm cons
Output Build.bat :

Code: [Select]
\PellesC\bin\poasm /AIA32 Test.asm
\PellesC\bin\polink /SUBSYSTEM:CONSOLE Test.obj

« Last Edit: October 20, 2024, 11:22:14 AM by Vortex »
Code it... That's all...