From 555b4dcc07f0a0158dd309e1b1853ddbf32467fe Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Tue, 27 Nov 2018 20:08:49 +0100 Subject: Update makefile with check of b32e --- makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'makefile') diff --git a/makefile b/makefile index a5df0c9..ee7a305 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,15 @@ +all: b32e + # test b32e hello + echo -n "hello" | ./b32e + @printf '\n' + echo -n "hello" | base32 -i + b32e: b32e.o ld -o $@ $< b32e.o: b32e.asm nasm -f elf64 -O0 -w+all -o $@ $< + +.PHONY: clean +clean: + rm -f *.o b32e b32d -- cgit v1.2.1