From: rich Date: Tue, 25 Sep 2007 21:45:26 +0000 (+0000) Subject: Add 'make remote' rule for building on oirase. X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=c503d1950a0ae76db7257ca63d16034752c071da;hp=f1cc78565d2ec5b015e78fba19756ee573f3c957;p=jonesforth.git Add 'make remote' rule for building on oirase. --- diff --git a/Makefile b/Makefile index 9b31c69..21ad0d6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 2007-09-24 00:18:19 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 @@ -6,3 +6,8 @@ all: run: 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"'