summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/bin/old/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-01-09 22:43:47 +0000
committerKarl Berry <karl@freefriends.org>2012-01-09 22:43:47 +0000
commit66a28e0c48dbe5e98f85c13320d4c1aa27deed16 (patch)
tree1ca760c6b187045518083dfbdd4d75f12c54d2fe /Master/texmf-dist/source/latex/stex/bin/old/Makefile
parent2038d0a63142b83600256230a480cfc39a984c63 (diff)
rm stex, cannot get right: bin programs, xml, etc.
git-svn-id: svn://tug.org/texlive/trunk@25063 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/bin/old/Makefile')
-rw-r--r--Master/texmf-dist/source/latex/stex/bin/old/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/Master/texmf-dist/source/latex/stex/bin/old/Makefile b/Master/texmf-dist/source/latex/stex/bin/old/Makefile
deleted file mode 100644
index d2ae41c6401..00000000000
--- a/Master/texmf-dist/source/latex/stex/bin/old/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-all: src exec
-
-src: idcheck.l defcon.l modstr.l
- flex -ft idcheck.l > idcheck.yy.c
- flex -ft defcon.l > defcon.yy.c
- flex -f+t modstr.l > modstr.yy.cc
-
-idcheck: idcheck.l
- flex -f $<
- gcc lex.yy.c -lfl -o idcheck
-
-defcon: defcon.l
- flex -f $<
- gcc lex.yy.c -lfl -o defcon
-
-modstr: modstr.l
- flex -f+ $<
- g++ lex.yy.cc -lfl -o modstr
-
-exec: idcheck.yy.c defcon.yy.c modstr.yy.cc
- gcc idcheck.yy.c -lfl -o idcheck
- gcc defcon.yy.c -lfl -o defcon
- g++ modstr.yy.cc -lfl -o modstr
-
-clean:
- rm -f *.yy.c *.yy.cc *~
-
-distclean: clean