ucg/docsite/Makefile

33 lines
580 B
Makefile
Raw Normal View History

allyamls := $(shell find . -type f -name '*.yaml')
shared := $(wildcard ucglib/*.ucg)
bucketucgs := $(wildcard buckets/*.ucg)
%.yaml: %.ucg .libtarget
ucg build $<
# This ensures that we rebuild if the dependent ucglibs
# change.
.libtarget: $(shared)
touch .libtarget
build: bucketconfs gensite
bucketconfs: .libtarget $(patsubst %.ucg,%.yaml,$(bucketucgs))
all: build test
test:
ucg test -r
gensite:
cd site; \
gutenberg build -o generated
deploysite: gensite
cd site/; \
gsutil -m rsync -d -r generated gs://ucg.marzhillstudios.com/
clean:
rm -f $(allyamls)