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#/##')
|
ALL_DIRS = $(shell ls -d */ | sed 's#/##')
|
||||||
GENERAL_DIRS = $(filter-out $(QUBES_DIRS), $(ALL_DIRS))
|
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
|
all: apply-general apply-qubes
|
||||||
|
|
||||||
update-git-submodule:
|
|
||||||
@echo "Installing git submodules..."
|
|
||||||
git submodule update --init --recursive
|
|
||||||
|
|
||||||
apply-general:
|
apply-general:
|
||||||
@echo "Applying general configurations..."
|
@echo "Applying general configurations..."
|
||||||
|
rm ~/.Xresources
|
||||||
stow --target=$(HOME) $(GENERAL_DIRS)
|
stow --target=$(HOME) $(GENERAL_DIRS)
|
||||||
|
|
||||||
apply-qubes:
|
apply-qubes:
|
||||||
@echo "Applying Qubes configurations..."
|
@echo "Applying Qubes configurations..."
|
||||||
|
sudo rm -rf /rw/config/rc.local
|
||||||
sudo stow --target=/ qubes
|
sudo stow --target=/ qubes
|
||||||
|
|
||||||
install-apt-essentials:
|
install-apt-essentials:
|
||||||
|
@ -42,7 +40,6 @@ install-apt-essentials:
|
||||||
luarocks \
|
luarocks \
|
||||||
-y
|
-y
|
||||||
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@echo "Removing stowed configurations..."
|
@echo "Removing stowed configurations..."
|
||||||
stow -D --target=$(HOME) $(GENERAL_DIRS)
|
stow -D --target=$(HOME) $(GENERAL_DIRS)
|
||||||
|
|
Loading…
Reference in New Issue