diff options
| author | B. Watson <urchlay@slackware.uk> | 2025-11-22 18:57:08 -0500 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2025-11-22 18:57:08 -0500 |
| commit | ff9bf758b9d49eca3a79f88908824e6a25540108 (patch) | |
| tree | faa9f152750e7016caab7bcb35dad359ee2fa99f | |
| parent | 6ccb66234e869f122a4750ea80ed2eee482787eb (diff) | |
| download | unalf-ff9bf758b9d49eca3a79f88908824e6a25540108.tar.gz | |
Getting ready for release.0.1.0
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | README.txt | 8 | ||||
| -rw-r--r-- | src/Makefile | 4 |
3 files changed, 13 insertions, 1 deletions
@@ -1,3 +1,5 @@ +.makepp/ +unalf-*-win64.zip *~ *.o src/unalf @@ -4,6 +4,14 @@ unalf is a decompressor for the ALF file format, as used on the Atari Currently, unalf is working and has been fairly well tested against various ALF archives. +The latest unalf source is avaailable at: + + https://slackware.uk/~urchlay/repos/unalf + +The latest Windows binary release is available at: + + https://slackware.uk/~urchlay/unalf4win/unalf-0.1.0-win64.zip + The ultimate goal of this project is to reimplement the ALF compression and decompression algorithms on modern systems aka Linux and anything else that's POSIX-ish. It's also intended to diff --git a/src/Makefile b/src/Makefile index 6cab27a..68d6244 100644 --- a/src/Makefile +++ b/src/Makefile @@ -42,7 +42,7 @@ CFLAGS=-DVERSION='"$(VERSION)"' -Wall -I../f65 $(COPT) UNALF_OBJS=unalf.o io.o listalf.o extract.o f65.o glob.o opts.o usage.o self.o asmcode.o ALFSUM_OBJS=alfsum.o self.o -.PHONY: all clean install +.PHONY: all clean install crosswin windows windows-upload realclean all: unalf unalf.1 alfsum alfsum.1 @@ -124,3 +124,5 @@ windows: crosswin html cp alfsum.html unalf.html wintmp cd wintmp ; zip -r ../../unalf-$(VERSION)-win64.zip * +windows-upload: windows + scp ../unalf-$(VERSION)-win64.zip sluk:public_html/html/unalf4win/ |
