diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-07-30 20:40:34 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 15:23:30 +0200 |
commit | 2ae5d551c7b67fe5ff413e85d1e68eb1a063993a (patch) | |
tree | a0eb54d184ebbbf98b4a9cd9f00861108b3bc5a9 /SConscript | |
parent | 66aa65d08587324b679556b7b50f5db434b8167c (diff) |
added template-style README and LICENSE and purged cruft in prep for porting to the library template
svn path=/trunk/externals/unauthorized/; revision=15171
Diffstat (limited to 'SConscript')
-rw-r--r-- | SConscript | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/SConscript b/SConscript deleted file mode 100644 index 40a1c74..0000000 --- a/SConscript +++ /dev/null @@ -1,17 +0,0 @@ -import glob -import os -import re -Import('env prefix') - -for tk in glob.glob('*/*.tk'): - (dir, file) = os.path.split(tk) - filename = re.sub("\.tk$","",file) - cmd = "./tk2c.bash < " + dir + "/" + file + " > " + dir + "/" + filename + ".tk2c" - os.popen(cmd) - -for extra in glob.glob('*/*.c'): - unauthorized = env.SharedLibrary(target = re.sub("\.c$","",os.path.basename(extra)), source = extra) - env.Alias('install', env.Install(os.path.join(prefix, 'extra'), unauthorized)) - Default(unauthorized) - -env.Alias('install', env.Install(os.path.join(prefix, 'doc/unauthorized'), glob.glob('*/*.pd'))) |