1
0
Fork 0

clean up makefile

This commit is contained in:
Anton Livaja 2025-03-04 13:59:27 -08:00
parent 3f98971ed6
commit 64eed8f4e8
Signed by: anton
GPG Key ID: 44A86CFF1FDF0E85
1 changed files with 4 additions and 7 deletions

View File

@ -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)