alpine-zdt-images/Makefile

27 lines
833 B
Makefile
Raw Normal View History

2017-12-25 02:06:54 +00:00
.PHONY: ami
ami: build/convert
build/convert alpine-ami.yaml > build/alpine-ami.json
packer build -var-file=variables.json build/alpine-ami.json
build/convert:
[ -d ".py3" ] || python3 -m venv .py3
2017-12-25 04:53:29 +00:00
.py3/bin/pip install pyyaml boto3
2017-12-25 02:06:54 +00:00
[ -d "build" ] || mkdir build
# Make stupid simple little YAML/JSON converter so we can maintain our
# packer configs in a sane format that allows comments but also use packer
# which only supports JSON
@echo "#!`pwd`/.py3/bin/python" > build/convert
@echo "import yaml, json, sys" >> build/convert
@echo "json.dump(yaml.load(open(sys.argv[1])), sys.stdout, indent=4, separators=(',', ': '))" >> build/convert
@chmod +x build/convert
2017-12-25 05:03:24 +00:00
%.py: %.py.in
2017-12-25 04:53:29 +00:00
sed "s|@PYTHON@|#!`pwd`/.py3/bin/python|" $< > $@
chmod +x $@
2017-12-25 02:06:54 +00:00
.PHONY: clean
clean:
2017-12-25 05:03:24 +00:00
rm -rf build .py3 scrub-old-amis.py gen-readme.py