mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 10:07:59 +02:00
updated manual directory
git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorsPackage@47 08cae9ef-cb74-4d14-b03a-d7ea46f178d7
This commit is contained in:
50
manual/manual-calwiz/Makefile
Normal file
50
manual/manual-calwiz/Makefile
Normal file
@ -0,0 +1,50 @@
|
||||
DESTDIR?=../
|
||||
|
||||
|
||||
#manual-api manual-calwiz manual-client manual-gui manual-main
|
||||
|
||||
TEX=latex
|
||||
|
||||
MAINTEXS= angularCalibrationHowTo.tex energyCalibrationHowTo.tex
|
||||
|
||||
TEXS=ancCal.tex enCal.tex installation.tex
|
||||
|
||||
DVIS = $(MAINTEXS:.tex=.dvi)
|
||||
PSS = $(MAINTEXS:.tex=.ps)
|
||||
PDFS = $(MAINTEXS:.tex=.pdf)
|
||||
|
||||
HTMLS = $(MAINTEXS:%.tex=%)
|
||||
|
||||
|
||||
#destdir?!?!?
|
||||
|
||||
all: $(PDFS) $(HTMLS)
|
||||
echo $(PWD)
|
||||
echo $(PDFS)
|
||||
echo $(HTMLS)
|
||||
|
||||
pdf: $(PDFS)
|
||||
|
||||
|
||||
html: $(HTMLS)
|
||||
|
||||
$(HTMLS): $(TEXS) $(MAINTEXS)
|
||||
latex $@.tex
|
||||
latex2html -split 4 $@.tex
|
||||
$(shell test -d $(DESTDIR)/html || mkdir -p $(DESTDIR)/html)
|
||||
mv $@ $(DESTDIR)/html
|
||||
|
||||
%.dvi : %.tex $(TEXS)
|
||||
latex $<
|
||||
latex $<
|
||||
|
||||
%.ps : %.dvi
|
||||
dvips -o $@ $<
|
||||
|
||||
|
||||
%.pdf : %.ps
|
||||
ps2pdf $< $@
|
||||
|
||||
|
||||
clean:
|
||||
rm -rf *.aux *.log *.toc *.out $(DVIS) $(PSS) $(PDFS) $(HTMLS)
|
Reference in New Issue
Block a user