
SOURCE = index.xml

all: html

html: $(SOURCE)
	./crear_html.sh $(SOURCE)

pdf: $(SOURCE)
	./crear_pdf.sh $(SOURCE)

clean: 
	rm -r html pdf
