summaryrefslogtreecommitdiffstats
path: root/doc/bibtex/Makefile
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-03-24 07:28:49 +0100
committerSven Gothel <[email protected]>2014-03-24 07:28:49 +0100
commit6622756a97c907e2647d07dad55883c4906413ea (patch)
tree479cafac54305110e72e0676ea537fc87d083358 /doc/bibtex/Makefile
parentf1d5c9bde14ad958d7f865009b7cef2492194fd6 (diff)
Adding [proposal] for jogamp.bib, a bibtex entry for citations
Diffstat (limited to 'doc/bibtex/Makefile')
-rw-r--r--doc/bibtex/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/bibtex/Makefile b/doc/bibtex/Makefile
new file mode 100644
index 0000000..09c5da7
--- /dev/null
+++ b/doc/bibtex/Makefile
@@ -0,0 +1,15 @@
+
+.SUFFIXES: .pdf .dvi .tex
+
+.dvi.pdf:
+ dvipdf $<
+
+.tex.dvi:
+ latex $<
+ bibtex `basename $< .tex`
+ latex $<
+ latex $<
+
+clean:
+ rm -f *.log *.dvi *.aux *.bbl *.blg *.out
+