Makefile
changeset 0 7e52f5046fb6
child 2 a11aa511a545
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Thu Sep 07 16:46:51 2006 -0400
@@ -0,0 +1,19 @@
+PACKAGE = programming-guidelines
+STYLESHEET = stylesheets/librognome-html.xsl
+
+SGML_FILES = \
+	programming-guidelines.xml
+
+all: articulo
+
+articulo: $(SGML_FILES)
+	 xsltproc --stringparam gtkdoc.bookname $(PACKAGE) \
+	          --stringparam html.stylesheet $(PACKAGE).css \
+	          --output html/index.html \
+	          $(STYLESHEET) \
+	          programming-guidelines.xml
+	cp -a stylesheets/*.png html
+	cp -a stylesheets/$(PACKAGE).css html
+
+clean: 
+	rm -rf html/*