diff options
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am new file mode 100644 index 0000000..a257afb --- /dev/null +++ b/doc/Makefile.am @@ -0,0 +1,19 @@ +EXTRA_DIST = asn1.tex asn1.ps asn1.html fdl.tex TODO +SUBDIRS = scripts + + +TEX_OBJECTS = asn1.tex ../lib/asn1-api.tex + +asn1.ps: $(TEX_OBJECTS) + -$(LN_S) ../lib/asn1-api.tex . + -latex asn1.tex && latex asn1.tex && dvips asn1.dvi -o asn1.ps + +asn1.html: $(TEX_OBJECTS) + -latex2html asn1.tex -no_navigation -no_subdir 1 -split 0 -local_icons -html_version 3.2,math \ + -info "" -white + + +clean: + @-rm *.log *.aux *.toc + @-rm *.pl index.html asn1.dvi + @-rm WARNINGS asn1-api.tex |