Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
some makefile refactoring and consistent naming
git-svn-id: https://slps.svn.sourceforge.net/svnroot/slps@340 ab42f6e0-554d-0410-b580-99e487e6eeb2
  • Loading branch information
grammarware committed Oct 13, 2008
1 parent 3952994 commit 4aa079d
Show file tree
Hide file tree
Showing 10 changed files with 50 additions and 49 deletions.
67 changes: 34 additions & 33 deletions topics/java/Makefile
Expand Up @@ -7,38 +7,39 @@ test:
cd jls1 ; make
cd jls2 ; make
cd jls3 ; make
../../shared/tools/gdt jls1/jls1.bgf lci/snapshot/jls1syntax.bgf
../../shared/tools/gdt jls2/jls2.bgf lci/snapshot/jls2syntax.bgf
../../shared/tools/gdt jls3/jls3.bgf lci/snapshot/jls3syntax.bgf
../../shared/tools/gdt jls1/jls1c.bgf lci/snapshot/jls1doc.bgf
../../shared/tools/gdt jls2/jls2c.bgf lci/snapshot/jls2doc.bgf
../../shared/tools/gdt jls3/jls3c.bgf lci/snapshot/jls3doc.bgf
../../shared/tools/gdt jls1/jls1a.bgf lci/snapshot/jls1app.bgf
../../shared/tools/gdt jls2/jls2a.bgf lci/snapshot/jls2app.bgf
../../shared/tools/gdt jls3/jls3a.bgf lci/snapshot/jls3app.bgf
../../shared/tools/gdt jls1/jls1d.bgf lci/snapshot/jls1doc.bgf
../../shared/tools/gdt jls2/jls2d.bgf lci/snapshot/jls2doc.bgf
../../shared/tools/gdt jls3/jls3d.bgf lci/snapshot/jls3doc.bgf

rebuild:
curl -k http://java.sun.com/docs/books/jls/first_edition/html/19.doc.html > jls1/syntax.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/syntax.doc.html > jls2/syntax.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/syntax.html > jls3/syntax.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/4.doc.html >jls1/collected.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/6.doc.html >>jls1/collected.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/7.doc.html >>jls1/collected.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/8.doc.html >>jls1/collected.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/9.doc.html >>jls1/collected.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/10.doc.html >>jls1/collected.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/14.doc.html >>jls1/collected.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/15.doc.html >>jls1/collected.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/typesValues.doc.html >jls2/collected.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/names.doc.html >>jls2/collected.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/packages.doc.html >>jls2/collected.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html >>jls2/collected.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/interfaces.doc.html >>jls2/collected.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/arrays.doc.html >>jls2/collected.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/statements.doc.html >>jls2/collected.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/expressions.doc.html >>jls2/collected.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html >jls3/collected.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/names.html >>jls3/collected.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/packages.html >>jls3/collected.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/classes.html >>jls3/collected.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/interfaces.html >>jls3/collected.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/arrays.html >>jls3/collected.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/statements.html >>jls3/collected.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/expressions.html >>jls3/collected.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/19.doc.html > jls1/app.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/syntax.doc.html > jls2/app.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/syntax.html > jls3/app.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/4.doc.html >jls1/doc.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/6.doc.html >>jls1/doc.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/7.doc.html >>jls1/doc.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/8.doc.html >>jls1/doc.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/9.doc.html >>jls1/doc.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/10.doc.html >>jls1/doc.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/14.doc.html >>jls1/doc.html
curl -k http://java.sun.com/docs/books/jls/first_edition/html/15.doc.html >>jls1/doc.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/typesValues.doc.html >jls2/doc.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/names.doc.html >>jls2/doc.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/packages.doc.html >>jls2/doc.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html >>jls2/doc.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/interfaces.doc.html >>jls2/doc.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/arrays.doc.html >>jls2/doc.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/statements.doc.html >>jls2/doc.html
curl -k http://java.sun.com/docs/books/jls/second_edition/html/expressions.doc.html >>jls2/doc.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html >jls3/doc.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/names.html >>jls3/doc.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/packages.html >>jls3/doc.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/classes.html >>jls3/doc.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/interfaces.html >>jls3/doc.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/arrays.html >>jls3/doc.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/statements.html >>jls3/doc.html
curl -k http://java.sun.com/docs/books/jls/third_edition/html/expressions.html >>jls3/doc.html

12 changes: 6 additions & 6 deletions topics/java/jls1/Makefile
@@ -1,10 +1,10 @@
all:
python ../../extraction/html2bgf/getpre.py syntax.kw syntax.html parse.html
python ../../extraction/html2bgf/html2bgf.py parse.html jls1.bgf
python ../../extraction/html2bgf/getpre.py collect.kw collected.html parse.html
python ../../extraction/html2bgf/html2bgf.py parse.html jls1c.bgf
../../../shared/tools/checkxml bgf jls1.bgf
../../../shared/tools/checkxml bgf jls1c.bgf
python ../../extraction/html2bgf/getpre.py syntax.kw app.html parse.html
python ../../extraction/html2bgf/html2bgf.py parse.html jls1a.bgf
python ../../extraction/html2bgf/getpre.py collect.kw doc.html parse.html
python ../../extraction/html2bgf/html2bgf.py parse.html jls1d.bgf
../../../shared/tools/checkxml bgf jls1a.bgf
../../../shared/tools/checkxml bgf jls1d.bgf

clean:
rm -f *.bgf parse.html
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions topics/java/jls2/Makefile
@@ -1,9 +1,9 @@
all:
python ../../extraction/html2bgf/html2bgf.py syntax.html jls2.bgf
python ../../extraction/html2bgf/getpre.py collect.kw collected.html parse.html
python ../../extraction/html2bgf/html2bgf.py parse.html jls2c.bgf
../../../shared/tools/checkxml bgf jls2.bgf
../../../shared/tools/checkxml bgf jls2c.bgf
python ../../extraction/html2bgf/html2bgf.py app.html jls2a.bgf
python ../../extraction/html2bgf/getpre.py collect.kw doc.html parse.html
python ../../extraction/html2bgf/html2bgf.py parse.html jls2d.bgf
../../../shared/tools/checkxml bgf jls2a.bgf
../../../shared/tools/checkxml bgf jls2d.bgf

clean:
rm -f *.bgf parse.html
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions topics/java/jls3/Makefile
@@ -1,9 +1,9 @@
all:
python ../../extraction/html2bgf/html2bgf.py syntax.html jls3.bgf
python ../../extraction/html2bgf/getpre.py collect.kw collected.html parse.html
python ../../extraction/html2bgf/html2bgf.py parse.html jls3c.bgf
../../../shared/tools/checkxml bgf jls3.bgf
../../../shared/tools/checkxml bgf jls3c.bgf
python ../../extraction/html2bgf/html2bgf.py app.html jls3a.bgf
python ../../extraction/html2bgf/getpre.py collect.kw doc.html parse.html
python ../../extraction/html2bgf/html2bgf.py parse.html jls3d.bgf
../../../shared/tools/checkxml bgf jls3a.bgf
../../../shared/tools/checkxml bgf jls3d.bgf

clean:
rm -f *.bgf parse.html
File renamed without changes.
File renamed without changes.

0 comments on commit 4aa079d

Please sign in to comment.