Sophie

Sophie

distrib > Fedora > 14 > i386 > by-pkgid > dd7a95aabe1c049ac9f84beede8143d3 > files > 26

synopsis-doc-0.12-4.fc14.i686.rpm

prefix:= 
synopsis:= python synopsis.py
xsltproc:= xsltproc --novalid --path $(shell pwd) --xinclude
fop	:= fop#xmlroff --backend=cairo
src	:= Path.h Polyline.h Bezier.h Nurbs.h
syn	:= $(patsubst %.h, %.syn, $(src))

all: Paths

Paths: Paths.xml Reference.xml
	mkdir -p $@
	mkdir -p $@/images
	cp synopsis.css $@
	$(xsltproc) -o $@/ html.xsl Reference.xml
	cp images/*.png $@/images

Paths.pdf: Paths.fo
	echo $(fop) -o $@ $<

Paths.fo: Paths.xml Reference.xml
	$(xsltproc) -o $@ fo.xsl Reference.xml

Paths.xml: Paths.syn
	$(synopsis) docbook --title='The Title' --output=$@ $<

Paths.syn: $(syn)
	$(synopsis) link --output=$@ $^

Path.syn: ../src/Path.h
	$(synopsis) cxx_ssd_prev --output=$@ $<

Polyline.syn: ../src/Polyline.h
	$(synopsis) cxx_ss --output=$@ $<

Bezier.syn: ../src/Bezier.h
	$(synopsis) cxx_javadoc --output=$@ $<

Nurbs.syn: ../src/Nurbs.h
	$(synopsis) cxx_rst --output=$@ $<

install-html: all
ifdef prefix
	mkdir -p $(prefix)
	cp -r Paths/* $(prefix)
	cp Paths.xml $(prefix)
	if test -f Paths.pdf; then cp Paths.pdf $(prefix); fi
endif

install-print: Paths.pdf
ifdef prefix
	mkdir -p $(prefix)
	cp $< $(prefix)
endif

clean:
	rm -rf *.syn

distclean: clean
	rm -rf Paths Paths.xml