# Makefile for the (first) demo album
#

### Web config boilerplate

TOPDIR=../../../../..
MYNAME=coffee
DOTDOT=www/Steve_Savitzky/Albums
SRCDIR=../../../.

FILES= Makefile notes \
	$(wildcard *.html) \
	$(wildcard *.list) \
	$(wildcard *.tracks) 

MF_DIR=$(TOPDIR)/Config/makefiles

### Filk/recording boilerplate

TOOLDIR		= ../../Tools

### Short name, long (cannonical directory) name, title
#	The short name is the same as the name of this directory,
#	and is used to refer to this album in scripts and makefiles.

SHORTNAME	= demo
LONGNAME	= Sufficiently_Advanced
TITLE		= Sufficiently Advanced?

### Include appropriate makefile rules
#	Depending on whether we're in a website or a recording tree
#	It's better to look for $(SRCDIR)/WURM.cf then $(MF_DIR), since
#	at some point MF_DIR and TOOLDIR may get merged.

ifeq ($(shell [ -f $(SRCDIR)/WURM.cf ] || echo notweb),)
 include $(MF_DIR)/file.make
 include $(MF_DIR)/webdir.make
else
 include $(TOOLDIR)/album.make
endif

