summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-03-29 19:29:38 -0500
committerToby Vincent <tobyv13@gmail.com>2023-03-29 19:29:38 -0500
commite9fd0daa3698fe28c272893cb982ffc4e58cfeba (patch)
tree924bd114f7407a211a233e4ac56a4012ce6afeba /makefile
parent2c65d14bc06370434969c68e4998062bd4b9d249 (diff)
build: remove legacy makefile
Diffstat (limited to 'makefile')
-rw-r--r--makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/makefile b/makefile
deleted file mode 100644
index 3923c35..0000000
--- a/makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
-
-.PHONY: stow
-stow: # Install configs
- stow */
-
-.PHONY: unstow
-unstow: # Uninstall configuration files
- stow --delete */
-
-.PHONY: clean
-clean: # Remove all broken symbolic links from $HOME (recursivly)
- fd . $(HOME) --hidden --exclude $(shell realpath --relative-base="$(HOME)" "$(ROOT_DIR)") --exclude $(shell realpath --relative-base="$(HOME)" "$(XDG_CACHE_HOME)") --type l --exec sh -c '[ -e "{}" ] || rm -v {}'
-
-.PHONY: gpg
-gpg: # Install GPG keys
- gpg --auto-key-locate keyserver --locate-keys tobyv13@gmail.com
- gpg --import-ownertrust $(HOME)/.gnupg/trustfile.txt
-
-.PHONY: wsl
-wsl:
- @if [ -n "$$WSL_DISTRO_NAME" ]; then stow wsl --override=/*; fi
-
-.PHONY: wsl-script
-wsl-script: wsl # Run WSL install script
- ./wsl/.local/bin/wsl-installer.sh