diff options
| author | B. Watson <urchlay@slackware.uk> | 2025-11-18 06:14:11 -0500 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2025-11-18 06:14:11 -0500 |
| commit | 7ec4a5150710643e99f982b5a82f8aeb49302d81 (patch) | |
| tree | c8cc2e27c53caba2f2f4d7d15c8e2f9dd42032d3 | |
| parent | e5abbec777fd4776c896322bac3ae20d0bb9592c (diff) | |
| download | unalf-7ec4a5150710643e99f982b5a82f8aeb49302d81.tar.gz | |
Add top-level Makefile for convenience.
| -rw-r--r-- | Makefile | 8 | ||||
| -rw-r--r-- | README.txt | 5 |
2 files changed, 11 insertions, 2 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3172981 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +all: + $(MAKE) -C src $(MAKEFLAGS) + +clean: + $(MAKE) -C src $(MAKEFLAGS) clean + +install: + $(MAKE) -C src $(MAKEFLAGS) install @@ -12,8 +12,9 @@ README.txt - you're reading it now. TODO.txt - plans for the future. -src/ - the source. should be able to build with "cd src; make", -followed by "make install" if you want. +src/ - the source. On Linux or similar, you should be able to build +with "make", followed by "make install" if you want. You have to use +GNU make, so the command may be "gmake". f65/ - "fake 6502" porting layer. Not for the faint of heart. The unalf algorithm was ported from a disassembly of the 6502 code, using |
