Makefile
author "German Poo-Caaman~o <gpoo@ubiobio.cl>"
Mon, 11 Sep 2006 23:39:36 -0400
changeset 5 4ca4c0227161
parent 2 a11aa511a545
child 8 430634105212
permissions -rw-r--r--
2006-09-11 German Poo-Caaman~o <gpoo@ubiobio.cl> * programming-guidelines: Fixed two translation mistakes, thanks to Sergio Villar Senin <svillar@igalia.com>

PACKAGE = programming-guidelines
STYLESHEET = stylesheets/librognome-html.xsl
OUTPUT_DIR = $(PACKAGE)

SGML_FILES = \
	programming-guidelines.xml

all: articulo

articulo: $(SGML_FILES)
	 xsltproc --stringparam gtkdoc.bookname $(PACKAGE) \
	          --stringparam html.stylesheet $(PACKAGE).css \
	          --output $(OUTPUT_DIR)/index.html \
	          $(STYLESHEET) \
	          programming-guidelines.xml
	cp -a stylesheets/*.png $(OUTPUT_DIR)
	cp -a stylesheets/$(PACKAGE).css $(OUTPUT_DIR)

clean: 
	rm -rf programming-guidelines/*
	rmdir programming-guidelines