previous vasm version treats the \ in row7 as the start of an escape sequence
[zxkeybtest] / Makefile
index 501cb6f..eefd9a0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-name = testrom
+name = zxkeybtest
 src = $(wildcard *.asm)
 obj = $(src:.asm=.o)
 bin = $(name).bin
@@ -10,6 +10,9 @@ ASFLAGS = -Fvobj
 LD = vlink
 LDFLAGS = -b rawbin1
 
+.PHONY: all
+all: tap rom
+
 .PHONY: tap
 tap: $(tap)
 
@@ -28,7 +31,7 @@ $(tap): $(bin)
 %.o: %.asm
        $(AS) -o $@ $(ASFLAGS) -L $*.lst $< >/dev/null
 
-testrom.o: testrom.asm glyphs.inc logo.inc
+zxkeybtest.o: zxkeybtest.asm glyphs.inc logo.inc
 
 .PHONY: clean
 clean:
@@ -40,4 +43,4 @@ run: $(tap)
 
 .PHONY: program
 program: $(rom)
-       minipro -p 'AT28C16 @DIP24' -s -w $<
+       minipro -p 'AT28C16E @DIP24' -s -w $<