diff options
author | B. Watson <urchlay@slackware.uk> | 2024-06-29 04:49:12 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-06-29 04:49:12 -0400 |
commit | 017a503f34a0f8ce2245f1b5dd78894f65326a90 (patch) | |
tree | 62ac02471db0a6e9b97b619b7b63f05110fad61b /Makefile | |
parent | d1563c6d7db5e2c8484b80b870e7fb753400f6db (diff) | |
download | bw-atari8-tools-017a503f34a0f8ce2245f1b5dd78894f65326a90.tar.gz |
a8cat: added (will eventually replace both a8utf8 and a8eol).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -16,9 +16,9 @@ CC=gcc CFLAGS=-Wall $(COPT) -ansi -D_GNU_SOURCE -DVERSION=\"$(VERSION)\" # BINS and SCRIPTS go in $BINDIR, DOCS go in $DOCDIR -BINS=a8eol atr2xfd atrsize axe blob2c blob2xex cart2xex cxrefbas dumpbas fenders protbas renumbas rom2cart unmac65 unprotbas vxrefbas xex1to2 xexamine xexcat xexsplit xfd2atr listbas +BINS=a8eol atr2xfd atrsize axe blob2c blob2xex cart2xex cxrefbas dumpbas fenders protbas renumbas rom2cart unmac65 unprotbas vxrefbas xex1to2 xexamine xexcat xexsplit xfd2atr listbas a8cat SCRIPTS=dasm2atasm a8utf8 -MANS=a8eol.1 xfd2atr.1 atr2xfd.1 blob2c.1 cart2xex.1 fenders.1 xexsplit.1 xexcat.1 atrsize.1 rom2cart.1 unmac65.1 axe.1 dasm2atasm.1 a8utf8.1 blob2xex.1 xexamine.1 xex1to2.1 unprotbas.1 protbas.1 renumbas.1 dumpbas.1 vxrefbas.1 cxrefbas.1 listbas.1 +MANS=a8eol.1 xfd2atr.1 atr2xfd.1 blob2c.1 cart2xex.1 fenders.1 xexsplit.1 xexcat.1 atrsize.1 rom2cart.1 unmac65.1 axe.1 dasm2atasm.1 a8utf8.1 blob2xex.1 xexamine.1 xex1to2.1 unprotbas.1 protbas.1 renumbas.1 dumpbas.1 vxrefbas.1 cxrefbas.1 listbas.1 a8cat.1 MAN5S=xex.5 MAN7S=atascii.7 DOCS=README.txt equates.inc *.dasm LICENSE ksiders/atr.txt @@ -66,6 +66,12 @@ listbas: listbas.c bas.o bcdfp.o tokens.o bas.o: bas.c bas.h +wtable.o: wtable.c wtable.h + +atables.o: atables.c atables.h + +a8cat: a8cat.c atables.o wtable.o + subdirs: for dir in $(SUBDIRS); do make -C $$dir COPT="$(COPT)"; done @@ -75,6 +81,9 @@ xfd2atr: xfd2atr.c atr2xfd: atr2xfd.c +atables.c: mkatables.pl + perl mkatables.pl > atables.c + # note to cross-compiler users: If you're building the *.bin targets, # blob2c needs to be executable on the build host. It'd also be nice # to build a blob2c for the target platform... Probably you can do |