build: make 'run' target invoke the built binary

ober

375276e96936e892b26287d71660c56208398a36

diff --git a/Makefile b/Makefile
index 82e2b93..1ced032 100644
--- a/Makefile
+++ b/Makefile
@@ -21,8 +21,8 @@ binary:
 
 build: binary
 
-run:
-	$(JEXEC) main.ss --help
+run: binary
+	./$(BINARY) $(ARGS)
 
 test:
 	$(JEXEC) tests/test-jasm.ss
diff --git a/jasm b/jasm
index 6900ab1..f8de3f9 100755
Binary files a/jasm and b/jasm differ