summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2024-12-22 14:54:20 +0000
committerIan C <ianc@noddybox.co.uk>2024-12-22 14:54:20 +0000
commit80b1b51911e8c4221e918b50039caf7533751e4c (patch)
tree620d440a515ec0cc7d230d46d0f1529b649cf117 /Makefile
parent024c31402a50343d15332a3965405983750f00ab (diff)
Updates to skeleton and added wifi routine skeletons.
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7e95aba..b720b35 100755
--- a/Makefile
+++ b/Makefile
@@ -20,10 +20,14 @@
# Makefile
#
-dload: dload.c
- zcc +zxn -subtype=dot -create-app -o dload dload.c
+dload: dload.c wifi.c wifi.h
+ zcc +zxn -subtype=dot -create-app -o dload dload.c wifi.c
clean:
rm -f dload dload_CODE.bin
+# If you use this, you'll almost certainly have to edit it
+devinstall: dload
+ hdfmonkey put $(shell cygpath $(USERPROFILE))/SpectrumNext/ZEsarUX_win-11.0/tbblue.mmc dload /dot
+
#vim: ai sw=4 ts=8 !expandtab