Update makefile

This commit is contained in:
Toby Jaffey 2025-12-12 14:29:50 +00:00
parent 096efb3b2c
commit ce63353156
142 changed files with 61742 additions and 1 deletions

18
apps/zigdoom/Makefile Normal file
View file

@ -0,0 +1,18 @@
PROJECT=zigdoom
TOPDIR=../..
HEAP_SIZE=$(shell echo "1024 * 1024 * 8" | bc)
HOST_EXTRA=-e ${HEAP_SIZE} -i 9999999
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 -Dheapsize=${HEAP_SIZE} && ${PREFIX}objcopy zig-out/bin/${PROJECT} -O binary ${PROJECT}.bin
clean: clean_common
rm -rf zig-out .zig-cache
test: all
${TOPDIR}/hosts/host-sdl/host-sdl ${HOST_EXTRA} ${PROJECT}.bin
include ${TOPDIR}/apps/makefile.common