forked from lrvick/dotfiles
clean up makefile
This commit is contained in:
parent
3f98971ed6
commit
64eed8f4e8
11
Makefile
11
Makefile
|
@ -2,20 +2,18 @@ QUBES_DIRS = qubes dom0
|
|||
ALL_DIRS = $(shell ls -d */ | sed 's#/##')
|
||||
GENERAL_DIRS = $(filter-out $(QUBES_DIRS), $(ALL_DIRS))
|
||||
|
||||
.PHONY: all update-git-submodule apply-general apply-qubes install-apt-essentials clean
|
||||
.PHONY: all apply-general apply-qubes install-apt-essentials clean
|
||||
|
||||
all: update-git-submodule apply-general apply-qubes
|
||||
|
||||
update-git-submodule:
|
||||
@echo "Installing git submodules..."
|
||||
git submodule update --init --recursive
|
||||
all: apply-general apply-qubes
|
||||
|
||||
apply-general:
|
||||
@echo "Applying general configurations..."
|
||||
rm ~/.Xresources
|
||||
stow --target=$(HOME) $(GENERAL_DIRS)
|
||||
|
||||
apply-qubes:
|
||||
@echo "Applying Qubes configurations..."
|
||||
sudo rm -rf /rw/config/rc.local
|
||||
sudo stow --target=/ qubes
|
||||
|
||||
install-apt-essentials:
|
||||
|
@ -42,7 +40,6 @@ install-apt-essentials:
|
|||
luarocks \
|
||||
-y
|
||||
|
||||
|
||||
clean:
|
||||
@echo "Removing stowed configurations..."
|
||||
stow -D --target=$(HOME) $(GENERAL_DIRS)
|
||||
|
|
Loading…
Reference in New Issue