Version 35 for release.
[jonesforth.git] / Makefile
index 9385631..21ad0d6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,13 @@
-# $Id: Makefile,v 1.1 2007-09-07 23:40:52 rich Exp $
+# $Id: Makefile,v 1.4 2007-09-25 21:45:26 rich Exp $
 
 all:
        gcc -m32 -nostdlib -static -Wl,-Ttext,0 -o jonesforth jonesforth.S
 
 run:
-       ./jonesforth
\ No newline at end of file
+       cat jonesforth.f - | ./jonesforth
+
+remote:
+       scp jonesforth.S jonesforth.f rjones@oirase:Desktop/
+       ssh rjones@oirase sh -c '"rm -f Desktop/jonesforth; \
+         gcc -m32 -nostdlib -static -Wl,-Ttext,0 -o Desktop/jonesforth Desktop/jonesforth.S; \
+         cat Desktop/jonesforth.f - | Desktop/jonesforth"'