Batch build file creator

Started by Vortex, October 20, 2024, 11:20:43 AM

Previous topic - Next topic

Vortex

Hello,

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

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 :

MakeBat.exe Test.asm cons

Output Build.bat :

\PellesC\bin\poasm /AIA32 Test.asm
\PellesC\bin\polink /SUBSYSTEM:CONSOLE Test.obj


Code it... That's all...

Vortex

New version offering a switch to specify the architecture, 32-bit or 64-bit :

MakeBat tool creating batch build file
Version 1.1

Usage : MakeBat srcfile.asm [subsystem] [architecture 32 or 64]
Subsystem is cons or gui

Code it... That's all...

TimoVJL

#2
Just make an Add_in for it  ;)

An assembler examples for Assembly language - Assembly discussions section, good to read even don't care about cmd-files  ;)
May the source be with you

HellOfMice

Thank Vortex, I use they certainly are better than mines :)

Quin

Thanks Vortex, I just tested and it works well! Super slick tool 8)
Use the assembly, Luke.

Vortex

Hi Quin,

You are welcome. Maybe later, some additional options can be implemented.
Code it... That's all...