# Makefile for testing the CD-making stuff. # ### Web config boilerplate TOPDIR=../../../../.. MYNAME=coffee DOTDOT=www/Steve_Savitzky/Albums SRCDIR=../../../. FILES= Makefile notes \ $(wildcard *.html) \ $(wildcard *.list) \ $(wildcard *.tracks) \ $(wildcard *.about) 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 = test LONGNAME = Is_This_Thing_On TITLE = Is This Thing On? Testing... ### 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 # Note: # The "snapshot" target has been moved to album.make, since it's # generally useful. # # It was briefly tempting to put this in "all", but that interferes # with making multiple test burns over the course of a week or so.