mirror of
https://github.com/jeremysrand/Apple2BuildPipeline.git
synced 2024-12-21 10:29:35 +00:00
Filter out the copyright symbol from Applesoft programs because the Apple // does not seem to like unicode for some reason.
This commit is contained in:
parent
2be79b8fd5
commit
3701fd5b62
11
make/bt
11
make/bt
@ -22,4 +22,13 @@ then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
exec "$JAVA" -jar make/bastokenizer-tools-bt-0.2.0.jar $*
|
||||
INPUTFILE=$1
|
||||
shift
|
||||
|
||||
tr -d '©' < "$INPUTFILE" > /tmp/bt_filtered.$$
|
||||
|
||||
"$JAVA" -jar make/bastokenizer-tools-bt-0.2.0.jar $* /tmp/bt_filtered.$$
|
||||
RESULT=$?
|
||||
|
||||
rm /tmp/bt_filtered.$$
|
||||
exit $RESULT
|
||||
|
@ -128,7 +128,7 @@ execute: $(DISKIMAGE)
|
||||
make/errorFilter.sh $(CL65) $(MACHCONFIG) --cpu $(CPU) $(ASMFLAGS) -l -c -o $@ $<
|
||||
|
||||
%.tok: %.bas
|
||||
make/bt $(BASICFLAGS) -o $@ $<
|
||||
make/bt $< $(BASICFLAGS) -o $@
|
||||
|
||||
$(OBJS): Makefile
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user