ciabatta/bake.cmd

14 lines
534 B
Batchfile
Raw Normal View History

2022-07-21 05:45:12 +00:00
2022-08-05 04:21:07 +00:00
:: Compile UTF-8 resource into .obj file
:: this .obj file has to be linked to the executable using it, NOT archived
:: together with ciabatta.lib.
rem windres -o utf8.obj utf8.rc
2022-08-05 04:21:07 +00:00
:: Compile chkstk
2022-07-29 05:46:16 +00:00
nasm src\_win\chkstk.asm -ochkstk.o -fwin64
2022-08-05 04:21:07 +00:00
:: Compile the rest of the party
rem clang -Wall src\ciabatta.c -o ciabatta.obj -c -DCIABATTA_WIN -I inc -I src\_win -nodefaultlibs -g -mfma
cuik src\ciabatta.c -o ciabatta.obj -c -DCIABATTA_WIN -I inc -I src\_win -nostdlib
lib /nologo /out:ciabatta.lib chkstk.o ciabatta.obj