Skip to content

Commit

Permalink
* replace $(GBS) with gbs3 in README.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
mame committed Dec 14, 2014
1 parent 3b2a824 commit 9a9c75e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ To run it on Ubuntu 12.04 LTS, you might want to refer to `.travis.yml`.
$ gforth QR.fs > QR.f
$ f2c QR.f && gcc -o QR QR.c -L/usr/lib -lf2c -lm && ./QR > QR.f90
$ gfortran -o QR QR.f90 && ./QR > QR.gbs
$ $(GBS) QR.gbs > QR.go
$ gbs3 QR.gbs > QR.go
$ go run QR.go > QR.groovy
$ groovy QR.groovy > QR.hs
$ ghc QR.hs && ./QR > QR.icn
Expand Down
1 change: 1 addition & 0 deletions src/README.md.gen.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
cmd = cmd.gsub("$(BF)", "bf")
cmd = cmd.gsub("$(CC)", "gcc")
cmd = cmd.gsub("$(CXX)", "g++")
cmd = cmd.gsub("$(GBS)", "gbs3")

cmd = cmd.gsub(/.{60,}?&&/, "\\0\n ")

Expand Down
1 change: 1 addition & 0 deletions src/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
cmd = cmd.gsub("$(BF)", "bf")
cmd = cmd.gsub("$(CC)", "gcc")
cmd = cmd.gsub("$(CXX)", "g++")
cmd = cmd.gsub("$(GBS)", "gbs3")
puts "cmd: " + cmd
system(cmd) || raise("failed")
end
Expand Down

0 comments on commit 9a9c75e

Please sign in to comment.