aboutsummaryrefslogtreecommitdiff
path: root/_make/_zip.mk
diff options
context:
space:
mode:
Diffstat (limited to '_make/_zip.mk')
-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-%)