From c7b4cdaa1615c95469f19aed2e6257cd8c17df7a Mon Sep 17 00:00:00 2001 From: Cullum Smith Date: Fri, 28 Jun 2024 13:12:53 -0400 Subject: initial commit --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6da2664 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +PACKAGES != find . -type d -depth 1 -not -name .git -exec basename {} \; +STOW_ARGS = --verbose --no-folding --target ${HOME} + +.PHONY: dry-run +dry-run: + stow --no --restow ${STOW_ARGS} ${PACKAGES} + +.PHONY: install +install: + stow --restow ${STOW_ARGS} ${PACKAGES} + +.PHONY: uninstall +uninstall: + stow --delete ${STOW_ARGS} ${PACKAGES} -- cgit v1.2.3