diff options
author | XANTRONIX Development | 2023-11-30 21:28:38 -0500 |
---|---|---|
committer | XANTRONIX Development | 2023-11-30 21:28:38 -0500 |
commit | 3ad75932fe1d0932182206bccdfaa80e23ec05c8 (patch) | |
tree | ae7b5d45679735eeee31d076e570922b421c2d59 | |
parent | 6eb05dd0a5e36e61ce25ff0a801853b432215e69 (diff) | |
download | xantronix-z32-3ad75932fe1d0932182206bccdfaa80e23ec05c8.tar.gz xantronix-z32-3ad75932fe1d0932182206bccdfaa80e23ec05c8.tar.bz2 xantronix-z32-3ad75932fe1d0932182206bccdfaa80e23ec05c8.zip |
Allow building STL files separately
-rw-r--r-- | case/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/case/Makefile b/case/Makefile index 73a277f..07a92fe 100644 --- a/case/Makefile +++ b/case/Makefile @@ -6,7 +6,9 @@ STL_MODEL_PARAM = top-keyboard.json OPENSCAD = /usr/bin/openscad -all: $(SCAD_MODELS) $(STL_MODELS) +all: scad +scad: $(SCAD_MODELS) +stl: $(STL_MODELS) top-keyboard.scad: SCAD_INPUT = top.scad top-keyboard.scad: top.scad |