initial import of the Makefile; this makefile is used to generate html pdf ps

etc versions of the installation documentation
This commit is contained in:
themaniac 2001-03-01 04:53:50 +00:00
parent 69522cf605
commit 05c17f3932

18
doc/Makefile Normal file
View File

@ -0,0 +1,18 @@
TOP = index
all : $(TOP).ps
$(TOP).tex: $(TOP).lyx
lyx --export latex $(TOP).lyx
$(TOP).dvi: $(TOP).tex
latex $(TOP).tex
$(TOP).ps: $(TOP).dvi
dvips -o $@ $(TOP).dvi
clean:
rm ./$(TOP).toc; rm ./$(TOP).aux; rm ./$(TOP).tex; rm ./$(TOP).log