]> git.sur5r.net Git - c128-kasse/commitdiff
Makefile: move to the d71 disk format
authorMaik Fischer <maikf@qu.cx>
Sat, 28 Oct 2017 12:35:42 +0000 (14:35 +0200)
committerMaik Fischer <maikf@qu.cx>
Mon, 30 Oct 2017 10:11:07 +0000 (11:11 +0100)
.gitignore
Makefile

index a45be6e9ffd1798a931462347051ebaf16ec0a89..ff2e07471b788965f7ea0c48ab733a20d60265b2 100644 (file)
@@ -4,7 +4,7 @@ kasse
 build/
 *.P00
 itemz
-*.d64
+*.d71
 include/version.h
 include/charset_umlauts.h
 tags
@@ -14,3 +14,4 @@ cat
 charmap
 ascii
 *.lbl
+TAGS
index de3ca5f51ab80c752f0b8f97982bc9c0bd92224c..47bb787121043e0134e0bd4c7379c1de71d871fb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -39,26 +39,26 @@ ascii: build/print_ascii.o
        ${LD} -Ln $@.lbl -t c128 $^ -o $@
 
 package: all
-       c1541 -format "${GV}",KA d64 kasse.d64
-       c1541 -attach kasse.d64 -write kasse
-       c1541 -attach kasse.d64 -write itemz
-       [ -e state ] && c1541 -attach kasse.d64 -write state || exit 0
-       [ -e items ] && c1541 -attach kasse.d64 -write items || exit 0
+       c1541 -format "${GV}",KA d71 kasse.d71
+       c1541 -attach kasse.d71 -write kasse
+       c1541 -attach kasse.d71 -write itemz
+       [ -e state ] && c1541 -attach kasse.d71 -write state || exit 0
+       [ -e items ] && c1541 -attach kasse.d71 -write items || exit 0
 
 test: build/config.o test/test.o build/general.o
        cl65 -t c128 $^ -o build/test
 
 test-package: test
-       c1541 -format "test",TE d64 test.d64
-       c1541 -attach test.d64 -write test || exit 0
-       c1541 -attach test.d64 -write state || exit 0
-       c1541 -attach test.d64 -write items || exit 0
+       c1541 -format "test",TE d71 test.d71
+       c1541 -attach test.d71 -write test || exit 0
+       c1541 -attach test.d71 -write state || exit 0
+       c1541 -attach test.d71 -write items || exit 0
 
 clean:
        rm -rf build/*.o build/*.s test/*.o test/*.s
 
 dist-clean: clean
-       rm -f kasse kasse.lbl itemz itemz.lbl cat cat.lbl kasse.d64
+       rm -f kasse kasse.lbl itemz itemz.lbl cat cat.lbl kasse.d71
 
 format:
        clang-format-3.9 -i **/*.[ch]