summaryrefslogblamecommitdiff
path: root/Makefile
blob: 6da26641bb7a0a3adf23ae17f61fe27c23236aa4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
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}