summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2007-05-24 08:40:57 +0000
committerNorbert Preining <preining@logic.at>2007-05-24 08:40:57 +0000
commitb1f605f6fc0e8678a49f1c5fce0829b51a08fee4 (patch)
tree8bf9be50437b06164034ceb791cd380fe17ab5a1
parent44ae2855fee9c990fd790511d4f93598f7317eb9 (diff)
foo
git-svn-id: svn://tug.org/texlive/trunk@4356 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--new-infra/Makefile7
-rw-r--r--new-infra/create_tlp.pl (renamed from new-infra/test-modules.pl)2
-rw-r--r--new-infra/first-try/Makefile12
3 files changed, 14 insertions, 7 deletions
diff --git a/new-infra/Makefile b/new-infra/Makefile
index 0ad364dca02..354c7ce284b 100644
--- a/new-infra/Makefile
+++ b/new-infra/Makefile
@@ -1,12 +1,7 @@
all:
mkdir tlp
- perl tlsrc2tlp.pl tlsrc/*.tlsrc
- bash tlp2tldb.sh tlp/*.tlp > full.tldb
- mv tlp tlp.old
- mkdir tlp
- perl use_tldb.pl full.tldb
- diff -urN tlp.old tlp
+ perl create_tlp.pl tlsrc/*.tlsrc
clean:
rm -rf tlp tlp.old full.tldb
diff --git a/new-infra/test-modules.pl b/new-infra/create_tlp.pl
index d054747372c..673fba5f568 100644
--- a/new-infra/test-modules.pl
+++ b/new-infra/create_tlp.pl
@@ -15,7 +15,7 @@ foreach my $f (@ARGV) {
$tlsrc->from_file($f);
my $tlp = $tlsrc->make_tlp($tltree);
my $name = $tlp->name;
- open(FOO,">$name.tlp");
+ open(FOO,">tlp/$name.tlp");
$tlp->writeout(\*FOO);
close(FOO);
}
diff --git a/new-infra/first-try/Makefile b/new-infra/first-try/Makefile
new file mode 100644
index 00000000000..0ad364dca02
--- /dev/null
+++ b/new-infra/first-try/Makefile
@@ -0,0 +1,12 @@
+
+all:
+ mkdir tlp
+ perl tlsrc2tlp.pl tlsrc/*.tlsrc
+ bash tlp2tldb.sh tlp/*.tlp > full.tldb
+ mv tlp tlp.old
+ mkdir tlp
+ perl use_tldb.pl full.tldb
+ diff -urN tlp.old tlp
+
+clean:
+ rm -rf tlp tlp.old full.tldb