diff options
author | B. Watson <yalhcru@gmail.com> | 2016-02-17 23:47:59 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-02-17 23:47:59 -0500 |
commit | 3abf7993ce2d2deb1c0596f3404b2bfa27324564 (patch) | |
tree | 67b4cb01fb3b303a14edf41f6ffa56243d33af3a /conio/Makefile | |
parent | b2f7604ac51db075201ea0aa40d002d3d5e7e071 (diff) | |
download | taipan-3abf7993ce2d2deb1c0596f3404b2bfa27324564.tar.gz |
make the cursor behave *much* better, via custom conio function
Diffstat (limited to 'conio/Makefile')
-rw-r--r-- | conio/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/conio/Makefile b/conio/Makefile new file mode 100644 index 0000000..4679d31 --- /dev/null +++ b/conio/Makefile @@ -0,0 +1,12 @@ +all: conio.lib + +OBJS=cgetc.o chline.o clrscr.o cputc.o cputs.o cvline.o gotox.o gotoxy.o gotoy.o revers.o wherex.o wherey.o + +conio.lib: $(OBJS) + ar65 a conio.lib *.o + +%.o: %.s + cl65 -O -t atari -c $< + +clean: + rm -f *.o |