PACKAGE = 'pcid64hu'
VERSION = '0.0.1'

all: demo

demo:
	@if [ -e examples/Makefile ]; then      \
	cd examples/;				\
	make;					\
	fi

clean:
	@if [ -e examples/Makefile ]; then      \
        $(MAKE) -C examples/ clean;		\
        fi


