# Sample Makefile for PDFlib's Python binding
# $Id: Makefile.sample,v 1.2.2.3 2008/03/10 17:34:01 rjs Exp $


RM	= rm -f
PYBIN = python

all: test

test::
	-$(PYBIN) hello.py
	-$(PYBIN) image.py
	-$(PYBIN) pdfclock.py
	-$(PYBIN) chartab.py
	-$(PYBIN) invoice.py
	-$(PYBIN) businesscard.py
	-$(PYBIN) starter_basic.py
	-$(PYBIN) starter_block.py
	-$(PYBIN) starter_pcos.py
	-$(PYBIN) starter_pdfa.py
	-$(PYBIN) starter_pdfmerge.py
	-$(PYBIN) starter_pdfx.py
	-$(PYBIN) starter_table.py
	-$(PYBIN) starter_tagged.py
	-$(PYBIN) starter_textflow.py
	-$(PYBIN) starter_webform.py
	-$(PYBIN) starter_pvf.py
	-$(PYBIN) starter_graphics.py
	-$(PYBIN) starter_image.py
	-$(PYBIN) starter_textline.py
	-$(PYBIN) starter_color.py
	-$(PYBIN) starter_type3font.py
	-$(PYBIN) starter_layer.py

clean::
	$(RM) hello.pdf image.pdf pdfclock.pdf chartab.pdf invoice.pdf
	$(RM) businesscard.pdf quickreference.pdf
	$(RM) starter*.pdf starter_pcos.txt
