# Makefile for Coffee, Computers and Song
#

### Web config boilerplate

TOPDIR=../../../../..
MYNAME=Worldcon-2006
DOTDOT=www/Steve_Savitzky/Concerts
SRCDIR=../../../.
MF_DIR=$(TOPDIR)/Config/makefiles

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

PUBFILES=$(FILES)

### Filk/recording boilerplate

TOOLDIR		= ../../Tools

### title
#	There's no shortname, because there's no need to tie this directory
#	together with corresponding tracks and songs.  Consequently there's
#	no need for a longname -- it's just the directory name $(MYNAME)

TITLE		= Steve Savitzky in Concert at Worldcon 2006

TRACKLIST_FLAGS  = 

### 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)/concert.make
 include $(TOOLDIR)/publish.make
endif

all::	$(MYNAME).html $(MYNAME).list 
