So here's the first version of the Makefile for experimental. I'll do some further testing, and changing variables for standard to-morrow.
# Just run
# make clean all archives
# to get fresh and ready to deploy .tbz2 and .zip archives
CONFIG ?= config.default
-include $(CONFIG)
MAKEOBJ ?= ./makeobj
PAKNAME ?= pak128.britain.testing
DESTDIR ?= ./
PAKDIR ?= $(DESTDIR)/$(PAKNAME)
DESTFILE ?= $(PAKNAME)
NAMEPREFIX ?=
NAMESUFFIX ?=
CPFILES ?= compat.tab
DIRS64 :=
DIRS64 += gui/gui64
DIRS128 :=
DIRS128 += attractions
DIRS128 += boats
DIRS128 += bus
DIRS128 += citybuildings
DIRS128 += citycars
DIRS128 += depots
DIRS128 += goods
DIRS128 += grounds
DIRS128 += industry
DIRS128 += london-underground
DIRS128 += maglev
DIRS128 += pedestrians
DIRS128 += smokes
DIRS128 += stations
DIRS128 += townhall
DIRS128 += trains
DIRS128 += trams
DIRS128 += trees
DIRS128 += ways
DIRS128 += gui/gui128
DIRS192 :=
DIRS192 += boats/192
DIRS224 :=
DIRS224 += boats/224
DIRS := $(DIRS64) $(DIRS128) $(DIRS192) $(DIRS224)
#generating filenames
#with this function the filenames are ****embled, by removing the dir, adding prefix
#and suffix and excluding grounds
#all dat files in the grounds dir are paked into ground.Outside.pak
make_name = $(subst $(NAMEPREFIX)grounds$(NAMESUFFIX),ground.Outside.pak,$(NAMEPREFIX)$(notdir $1)$(NAMESUFFIX))
.PHONY: $(DIRS) copy tar zip clean
all: copy $(DIRS)
archives: tar zip
tar: $(DESTFILE).tbz2
zip: $(DESTFILE).zip
$(DESTFILE).tbz2: $(PAKDIR)
@echo "===> TAR $@"
@tar cjf $@ $(DESTDIR)
$(DESTFILE).zip: $(PAKDIR)
@echo "===> ZIP $@"
@zip -rq $@ $(DESTDIR)
copy:
@echo "===> COPY"
@mkdir $(PAKDIR)
@cp -prt $(PAKDIR) $(CPFILES)
$(DIRS64):
@echo "===> PAK64 $@"
@mkdir -p $(PAKDIR)
$(MAKEOBJ) quiet PAK $(PAKDIR)/$(call make_name,$@) $@/ > /dev/null
$(DIRS128):
@echo "===> PAK128 $@"
@mkdir -p $(PAKDIR)
$(MAKEOBJ) quiet PAK128 $(PAKDIR)/$(call make_name,$@) $@/ > /dev/null
#since the subdirectories in the boats dir lack a boats, the / is removed for the filename
#this will cause trouble as soon as files with a different structure are included.
#(e.g. planes/planes192)
$(DIRS192):
@echo "===> PAK192 $@"
@mkdir -p $(PAKDIR)
@$(MAKEOBJ) quiet PAK192 $(PAKDIR)/$(call make_name,$(subst /,,$@)) $@/ > /dev/null
$(DIRS224):
@echo "===> PAK224 $@"
@mkdir -p $(PAKDIR)
@$(MAKEOBJ) quiet PAK224 $(PAKDIR)/$(call make_name,$(subst /,,$@)) $@/ > /dev/null
clean:
@echo "===> CLEAN"
@rm -fr $(PAKDIR) $(DESTFILE).tbz2 $(DESTFILE).zip
config.template:
#makeobject executable (default ./makeobj)
MAKEOBJ = ./makeobj-ex
#name of the pakset the pakset destination dir is also named after it
PAKNAME = pak128.britain-ex
#Name of the tar and zip files. default is $(PAKNAME).
#DESTFILE =
#path where the pakset dir should be built (default ./)
#DESTDIR =
#prefix and suffix for pak files (default empty)
NAMEPREFIX = brit-
NAMESUFFIX = -ex
#files and dirs to be copied into the pakset directory
#(default compat.tab only)
CPFILES = compat.tab readme.txt README
CPFILES += sound/ config/ text/ doc/
i'm breaking your filename convention a bit however. instead of BritAttractions-Ex.pak this Makefile makes brit-attractions-ex.pak. UCing the first char of the directory name is not achievable for me in Makefiles.