# Makefile for "Someplace In the Net" # ### Web config boilerplate TOPDIR=../../../../.. MYNAME=net DOTDOT=www/Steve_Savitzky/Tracks SRCDIR=../../../. MF_DIR=$(TOPDIR)/Config/makefiles FILES= Makefile \ $(wildcard *.html) \ $(wildcard *.do) \ $(wildcard *OK) \ $(wildcard *notes) ### Publishing boilerplate PUBFILES =$(FILES) ### Filk/recording/site 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 = $(MYNAME) LONGNAME = someplace_in_the_net TITLE = Someplace In the Net ### 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)/track.make include $(TOOLDIR)/publish.make endif