mirror of
https://github.com/Tolik-Trek/FFORMAT.git
synced 2026-06-15 01:11:44 +03:00
10 lines
485 B
Bash
Executable File
10 lines
485 B
Bash
Executable File
#! /bin/zsh
|
|
rm ./build/fmain.bin
|
|
rm ./build/format.hrs
|
|
sjasmplus --nologo -Wall --syntax=w --fullpath --msg=war --color=on --lst=./build/fmain.lst --raw=./build/fmain.bin ./fmain.asm
|
|
echo FMain compilation DONE
|
|
./mhmt -hst -zxh ./build/fmain.bin ./build/format.hrs
|
|
echo Packing fmain.bin DONE
|
|
echo Main compilation starts
|
|
sjasmplus --nologo -Wall --syntax=w --fullpath --msg=war --color=on --lst=./build/main.lst --raw=./build/fformat/fformat.exe ./main.asm
|
|
echo Main compilation DONE |