From c74f74bf0e9e76ba712fa84a3206ded7654a083d Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 11 Mar 2026 06:34:33 -0400 Subject: Fix Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d016e10..6377c1e 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ TESTXEX=fnchat-$(shell date +%Y%m%d-%H%M).xex ATASM=atasm -s -a all: clean fnchat.xex - cp fnchat.xex /var/tnfs/ + [ -d /var/tnfs ] && cp fnchat.xex /var/tnfs/ || true fnchat.xex: $(PARTS) cat $(PARTS) > fnchat.xex @@ -20,7 +20,7 @@ config/config.xex: $(MAKE) -C config clean: - rm -f $(PARTS) *.o + rm -f $(PARTS) *.o src/*.o obj/atari/*.o config/*.o fnchat.xex $(MAKE) -f Makefile.client clean %.xex: %.asm -- cgit v1.2.3