Whitespace changes to make the comments more obvious
[rrq/jonesforth.git] / Makefile
index ea0b9704b9bb7f1a46dd290ee1a39becfa67699d..21ad0d6156095ac3418b3795fd7c49443b260ba6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,13 @@
-# $Id: Makefile,v 1.2 2007-09-15 11:21:09 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
+       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"'