From a8207b72c68dcdd0df7207bac622e14e2efd65c3 Mon Sep 17 00:00:00 2001 From: Toby Jaffey Date: Wed, 17 Dec 2025 15:57:06 +0000 Subject: [PATCH] Don't build "self" example as debug in minirv32.h will break it (no stdio.h) --- apps/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/Makefile b/apps/Makefile index 85e1d05..add19ff 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -4,7 +4,7 @@ all: (cd helloworld && make) (cd lissajous && make) (cd conio && make) - (cd self && make) + #(cd self && make) (cd zig-mandel && make) (cd zigtris && make) (cd rust-hello && make) @@ -24,7 +24,7 @@ clean: (cd helloworld && make clean) (cd lissajous && make clean) (cd conio && make clean) - (cd self && make clean) + #(cd self && make clean) (cd zig-mandel && make clean) (cd zigtris && make clean) (cd rust-hello && make clean)