Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
odfpy / xml2odf / Makefile
Size: Mime:
all: odf xml2odf.1 

txt: xml2odf.txt

%.1: %.docbook 
	xmlto man $<

%.txt: %.docbook 
	xmlto txt $<

clean:
	rm -f *.1 *~ *.txt odf definitionlistsOutput*
odf:
	ln -s ../odf

test: clean odf
	@echo =============== output by Python2 ===================
	@python3 xml2odf -o definitionlistsOutput2.odt definitionlists.xml
	@echo created definitionlistsOutput2.odt
	@echo =============== output by Python3 ===================
	@python3 xml2odf -o definitionlistsOutput3.odt definitionlists.xml
	@echo created definitionlistsOutput3.odt