Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.

Commit 59a37d6

Browse files
committed
Add release package build routine.
1 parent 5a509df commit 59a37d6

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,6 @@ __pycache__
3838

3939
# Sphinx Documentation
4040
docs/build
41+
42+
# Packaging
43+
pico_synth_sandbox.zip

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ update: clean $(LIB_MPY:%=./%) src lib requirements
3939

4040
compile: clean $(LIB_MPY:%=./%)
4141

42+
package: clean $(LIB_MPY:%=./%) zip
43+
4244
clean:
4345
@rm $(LIB_MPY) || true
4446

@@ -73,3 +75,6 @@ samples:
7375
echo $${file} "=>" $(DEVICE)$${file} ; \
7476
cp $${file} $(DEVICE)$${file} ; \
7577
done
78+
79+
zip:
80+
zip ./$(LIB).zip $(LIB_MPY:%=./%)

0 commit comments

Comments
 (0)