mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-11-28 11:43:09 +03:00
9 lines
189 B
Makefile
9 lines
189 B
Makefile
|
define gcc_compile
|
||
|
win32-gcc -c -Os -DAUTOBUILD -DLANG_ENG=1 -o $@ $<
|
||
|
endef
|
||
|
define gcc_link
|
||
|
win32-ld -nostdlib -T $(1) -o "$@" $^
|
||
|
win32-objcopy "$@" -O binary
|
||
|
kpack --nologo "$@"
|
||
|
endef
|