From 39ba8a640bd178fd732d945760df7eef3e2c1e1a Mon Sep 17 00:00:00 2001 From: "N.N." Date: Tue, 5 Jan 2010 17:50:51 +0000 Subject: no gridflow snapshots in pure-data svn svn path=/trunk/; revision=12888 --- externals/gridflow/bin/make-compose-makefile | 30 ---------------------------- 1 file changed, 30 deletions(-) delete mode 100755 externals/gridflow/bin/make-compose-makefile (limited to 'externals/gridflow/bin/make-compose-makefile') diff --git a/externals/gridflow/bin/make-compose-makefile b/externals/gridflow/bin/make-compose-makefile deleted file mode 100755 index f7e5abca..00000000 --- a/externals/gridflow/bin/make-compose-makefile +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env ruby - -f = File.read("../compose-8859-1.pdd").split(/\s*;\s*/) -g = File.open("Makefile","w") -g.puts "default:: all" -g.puts "" -list = [] - -[94,96,126,168,176,180,184].each {|a| - g.puts "#{a}u.hpgl: #{a}.hpgl Makefile" - dy = (if a==184 then 0 else 100 end) - g.puts "\t../../bin/hpgl_move 0 #{dy} < #{a}.hpgl > #{a}u.hpgl" - list << "#{a}u.hpgl" -} - -f.each {|char| - a,b,c = char.split(/\s+/).map {|x| Integer x } - [0,32].each {|o| - d = c.to_s + (if o==0 and c>47 then "u" else "" end) - g.puts "#{a+o}.hpgl: #{b+o}.hpgl #{d}.hpgl Makefile" - g.puts "\tcat #{b+o}.hpgl #{d}.hpgl > #{a+o}.hpgl" - g.puts "" - list << "#{a+o}.hpgl" - } -} - -g.puts "all:: "+list.join(" ") -g.puts "" -g.puts "clean::" -g.puts "\trm "+list.join(" ") -- cgit v1.2.1