ITUNESDB=/Users/hmp/Music/iTunes/iTunes\ Music\ Library.xml

all:	copy index.html

clean:
	rm *.html

copy:
	cp -p ${ITUNESDB} itunes.xml
	
index.html:	itunes.xml
	make html scp
	
html:
	./gen_album_lists.py
	./gen_album_pages.py
	./gen_artist_lists.py
	./gen_artist_pages.py
#	./gen_recent_lists.py
	./gen_song_lists.py

scp:	index.html
	rsync -az . harold@drzeus.best.vwh.net:www/htdocs/playlist
