mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 04:57:57 +00:00
13 lines
336 B
Makefile
13 lines
336 B
Makefile
.PHONY = install
|
|
install:
|
|
./manager.py --commands "mkdir -p {location}" "stow --stow {package} --target {location}"
|
|
|
|
.PHONY = reinstall
|
|
reinstall:
|
|
./manager.py --commands "mkdir -p {location}" "stow --restow {package} --target {location}"
|
|
|
|
.PHONY = clean
|
|
clean:
|
|
./manager.py --commands "stow --delete {package} --target {location}"
|
|
|