aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0ceb932..6a38c8a 100644
--- a/Makefile
+++ b/Makefile
@@ -8,9 +8,15 @@ all: fnchat.xex
fnchat.xex: $(PARTS)
cat $(PARTS) > fnchat.xex
-client.xex:
+client.xex: client
+
+client:
$(MAKE) -f Makefile.client
+clean:
+ rm -f $(PARTS)
+ $(MAKE) -f Makefile.client clean
+
%.xex: %.asm
$(ATASM) -o$@ $<