buildable-stick-system/Makefile
Brian S. Stephan c9a74ebb18
build two zip files for printables uploading
Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2025-03-26 14:39:49 -05:00

15 lines
579 B
Makefile

all:
python build.py
mkdir -p ./build/docs
cp ./README.md ./build/README.md
cp ./docs/README-objects.md ./build/README-objects.md
cp ./docs/assembly-and-tips.md ./build/docs/assembly-and-tips.md
cp ./docs/printing-and-materials.md ./build/docs/printing-and-materials.md
cp ./LICENSE ./build/LICENSE
cp ./CHANGELOG.md ./build/CHANGELOG.md
pushd ./build; zip ./buildable-stick-system-`git describe --dirty`-stls-and-docs.zip . -r; popd
pushd ./build; zip ./buildable-stick-system-`git describe --dirty`-stls.zip extras frames misc panels -r; popd
clean:
rm -rf ./build