Added make test, minor improvements.
h3rald h3rald@h3rald.com
Fri, 27 Feb 2026 18:09:44 +0100
2 files changed,
5 insertions(+),
2 deletions(-)
M
Makefile
→
Makefile
@@ -15,7 +15,7 @@ # Windows (via MinGW/MSYS)
LDFLAGS += -lole32 endif -.PHONY: clean +.PHONY: clean test xyw: $(OBJS) $(CC) $(CFLAGS) $(OBJS) -o xyw $(LDFLAGS)@@ -43,6 +43,9 @@ $(CC) $(CFLAGS) -c devices/file.c -o devices/file.o
devices/beeper.o: devices/beeper.c devices/miniaudio.h xyw.h $(CC) $(CFLAGS) -c devices/beeper.c -o devices/beeper.o + +test: + ./test.sh clean: rm -f xyw xyw.exe $(OBJS)
M
examples/fileops.xyw
→
examples/fileops.xyw
@@ -18,7 +18,7 @@ ; Delete test.txt
file.op.delete file.operation STB ; Exit -$00 system.state STB +HLT .include "lib/puts.xyw"