aboutsummaryrefslogtreecommitdiff
path: root/_make
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2025-04-18 01:24:05 +0200
committerJonas Smedegaard <dr@jones.dk>2025-04-18 01:24:05 +0200
commit6ca4ff06867aa5d7354615c828bd83234d827ff2 (patch)
tree6a42f307f09e05491f8e1eb9bf157e13916dad8d /_make
parentea3988c911b467cbabe38cb9c3e6d0013b53965d (diff)
rop Mussel library; move Arduino sketches below Arduino/
Diffstat (limited to '_make')
-rw-r--r--_make/_zip.mk22
1 files changed, 0 insertions, 22 deletions
diff --git a/_make/_zip.mk b/_make/_zip.mk
deleted file mode 100644
index b610802..0000000
--- a/_make/_zip.mk
+++ /dev/null
@@ -1,22 +0,0 @@
-# Make snippet for generating/updating zip archive of a directory
-#
-# Copyright 2025, Jonas Smedegaard <dr@jones.dk>
-# SPDX-License-Identifier: GPL-3+
-#
-# Setup:
-# In main Makefile...
-# * set variable ZIP_DIRS
-# * include this make snippet
-#
-# Dependencies:
-# * zip
-
-# list of relative paths to PDF documents
-#ZIP_DIRS = \
-# subdir \
-# deep/subdir
-
-$(ZIP_DIRS:%=zip-of-%): zip-of-%:
- zip -r $*.zip $*
-
-.PHONY: $(ZIP_DIRS:%=zip-of-%)