summaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/makefile b/makefile
index bf4860b..6210d85 100644
--- a/makefile
+++ b/makefile
@@ -5,9 +5,11 @@ all: b32e b32d
test: b32e b32d
cat makefile | ./b32e > makefile.b32
cat makefile | base32 -w 0 > makefile.check.b32
+ diff makefile.b32 makefile.check.b32
- cat makefile.b32 | ./b32d
- cat makefile.check.b32 | base32 -d
+ cat makefile.b32 | ./b32d > makefile.decoded
+ @# cat makefile.check.b32 | base32 -d
+ diff makefile makefile.decoded
# encoder
b32e: b32e.o
@@ -25,4 +27,4 @@ b32d.o: b32d.asm
.PHONY: clean
clean:
- rm -f *.o b32e b32d *.b32
+ rm -f *.o b32e b32d *.b32 *.decoded