aforth

FORTH for Linux x86-64, written in assembly.
git clone git://henryandlizzy.uk/aforth
Log | Files | Refs | README

commit a1449a4fc90788590aa12e4ba5bbb5ed466032c6
parent ab2b4567cebd2bec14ee60e5b35b491a37e4a126
Author: Henry Wilson <m3henry@googlemail.com>
Date:   Mon, 18 Jun 2018 21:13:34 +0100

Standardized makefile

Diffstat:
Mmakefile | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/makefile b/makefile @@ -1,8 +1,12 @@ +.PHONY: all run test clean + all: bin/aFORTH + +test: all @echo Testing... @bin/aFORTH < test.txt -interactive: bin/aFORTH +run: all @bin/aFORTH bin/aFORTH: obj/main.o