How compil module without IDE ?

BlitzMax Forums/BlitzMax Tutorials/How compil module without IDE ?

Filax(Posted 2005) [#1]
Hi :)

I have made a little bat file to compile easily your mod
without bmax IDE. Open a new text file and save as
"compilation.bat"

and paste :

Cd \BlitzMax\bin
bmk makemods -a -r pub.mpacker
bmk makemods -a -d pub.mpacker
pause 5


Note : mpacker must be replaced by your hown module name !

Example : You have made a module called my MYMODULE.MOD and
this directory is under the BMAX/MOD/PUB.MOD/ Directory then
the bat become :

Cd \BlitzMax\bin
bmk makemods -a -r pub.mymodule
bmk makemods -a -d pub.mymodule
pause 5

Copy the BAT file under the PUB.MOD directory, easily no ... ? :)