diff options
author | holger <devnull@localhost> | 2002-10-10 16:22:27 -0300 |
---|---|---|
committer | holger <devnull@localhost> | 2002-10-10 16:22:27 -0300 |
commit | 5a523e605b9b6d1ae50d0707c1874c5b7f0959cc (patch) | |
tree | 4dfe1bf1f9ae2f2eefb5d34a42cc4ba029817091 /dvb-spec/dvbapi/Makefile | |
parent | ab85b007da42f42856a775d8cff97332093f5b34 (diff) | |
download | mediapointer-dvb-s2-5a523e605b9b6d1ae50d0707c1874c5b7f0959cc.tar.gz mediapointer-dvb-s2-5a523e605b9b6d1ae50d0707c1874c5b7f0959cc.tar.bz2 |
the new HEAD
Diffstat (limited to 'dvb-spec/dvbapi/Makefile')
-rw-r--r-- | dvb-spec/dvbapi/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dvb-spec/dvbapi/Makefile b/dvb-spec/dvbapi/Makefile new file mode 100644 index 000000000..aae688f33 --- /dev/null +++ b/dvb-spec/dvbapi/Makefile @@ -0,0 +1,30 @@ +all: dvbapi.ps dvbapi.pdf + +TEXS= dvbapi.tex devices.tex video.tex audio.tex ca.tex sec.tex frontend.tex \ + intro.tex title.tex dvbstb.ps + +dvbapi.pdf: dvbapi.dvi + dvipdf -o $@ $< + +dvbapi.ps: dvbapi.dvi + dvips -o $@ $< + +dvbapi.dvi: dvbapi.bbl $(TEXS) + -latex dvbapi + -bibtex dvbapi + -makeindex dvbapi + -latex dvbapi + -latex dvbapi + +dvbapi.bbl: $(TEXS) + -latex dvbapi + -bibtex dvbapi + -makeindex dvbapi + +%.ps: %.fig + ./fig2pstex $< + +clean: + rm -f dvbapi.dvi + rm -f *.aux *.bbl *.blg *.idx *.ilg *.ind *.log *.out *.toc + rm -f *.pdf *.pst *.ps |