aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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