mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-06 06:53:39 +00:00
15 lines
389 B
Makefile
15 lines
389 B
Makefile
PROJECT=zigtris
|
|
TOPDIR=../..
|
|
|
|
all:
|
|
@# zig's objcopy is broken, so use external tool
|
|
@# https://ziggit.dev/t/addobjcopy-producing-zero-padding-at-start-of-binary/13384
|
|
zig build && ${PREFIX}objcopy zig-out/bin/${PROJECT} -O binary ${PROJECT}.bin
|
|
|
|
clean: clean_common
|
|
rm -rf zig-out .zig-cache
|
|
|
|
test: all
|
|
${TOPDIR}/hosts/host/host ${PROJECT}.bin
|
|
|
|
include ${TOPDIR}/apps/makefile.common
|