DOX = doxygen
SUBDIRS = images

all: doc

doc: subdirs changelog
	${DOX} vuVolume.dox
	cp changelog.html vuVolume/html

changelog:
	sh generateChangelog.sh

subdirs:
	for i in ${SUBDIRS}; do make -C $$i; done
