From 64eed8f4e84c9bbadbe45099b9b10f6325426878 Mon Sep 17 00:00:00 2001 From: Anton Livaja Date: Tue, 4 Mar 2025 13:59:27 -0800 Subject: [PATCH] clean up makefile --- Makefile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index e14ec52..c9b8f8f 100644 --- a/Makefile +++ b/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)