Makefile: Updated

This commit is contained in:
2026-02-12 22:00:15 +01:00
parent 4a6cc7702a
commit 187e8f02f2
2 changed files with 42 additions and 17 deletions

View File

@@ -1,5 +1,12 @@
SHELL = /bin/sh SHELL = /bin/sh
HOMEDIR = ${HOME} HOMEDIR = ${HOME}
UNAME_S = $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
VSCODE_USER_DIR = ${HOMEDIR}/Library/Application Support/Code/User
else
VSCODE_USER_DIR = ${HOMEDIR}/.config/Code/User
endif
.PHONY: help all .PHONY: help all
@@ -16,11 +23,11 @@ all: git-fetch deploy-macos ## Update repo and run deploy-macos
install: git-fetch deploy-base ## Update repor and run deploy-base install: git-fetch deploy-base ## Update repor and run deploy-base
deploy-base: deploy-eza deploy-tmux deploy-vim deploy-zsh deploy-ssh deploy-hushlogin ## Only deploy basic conf files for shell usage deploy-base: deploy-eza deploy-tmux deploy-vim deploy-zsh deploy-ssh deploy-hushlogin deploy-git deploy-htop ## Only deploy basic conf files for shell usage
deploy-workstation: deploy-base deploy-vscode deploy-youtubedl ## Deploy workstation specific config files (inherits deploy-shell) deploy-workstation: deploy-base deploy-vscode deploy-ghostty ## Deploy workstation specific config files (inherits deploy-shell)
deploy-macos: deploy-htop deploy-workstation deploy-brewfile ## Deploy macOS specific config files (inherits deploy-workstation) deploy-macos: deploy-workstation deploy-brewfile deploy-aerospace deploy-karabiner ## Deploy macOS specific config files (inherits deploy-workstation)
gen-vscode-extension-list: ## Update the list of VSCode extensions gen-vscode-extension-list: ## Update the list of VSCode extensions
@echo "\033[1;32m>>>\033[1;0m Updating the list of VSCode extensions at .config/Code/User/extensions.list" @echo "\033[1;32m>>>\033[1;0m Updating the list of VSCode extensions at .config/Code/User/extensions.list"
@@ -76,17 +83,33 @@ deploy-vim: ## Deploy vim config
@cp .config/vim/vimrc ${HOMEDIR}/.config/vim @cp .config/vim/vimrc ${HOMEDIR}/.config/vim
deploy-vscode: ## Deploy VSCode config deploy-vscode: ## Deploy VSCode config
@echo "\033[1;32m>>>\033[1;0m Deploy VSCode config to ${HOMEDIR}/Library/Application Support/Code/User" @echo "\033[1;32m>>>\033[1;0m Deploy VSCode config to ${VSCODE_USER_DIR}"
@mkdir -p "${HOMEDIR}/Library/Application Support/Code/User" @mkdir -p "${VSCODE_USER_DIR}"
@cp .config/Code/User/*.json "${HOMEDIR}/Library/Application Support/Code/User" @cp .config/Code/User/*.json "${VSCODE_USER_DIR}"
@echo "\033[1;32m>>>\033[1;0m Install VSCode extensions from .config/Code/User/extensions.list" @echo "\033[1;32m>>>\033[1;0m Install VSCode extensions from .config/Code/User/extensions.list"
@cat .config/Code/User/extensions.list | xargs -L 1 code --install-extension @cat .config/Code/User/extensions.list | xargs -L 1 code --install-extension
deploy-youtubedl: ## Deploy youtube-dl config deploy-aerospace: ## Deploy Aerospace config
@echo "\033[1;32m>>>\033[1;0m Deploy youtube-dl config to ${HOMEDIR}/.config/youtube-dl" @echo "\033[1;32m>>>\033[1;0m Deploy Aerospace config to ${HOMEDIR}/.config/aerospace"
@mkdir -p ${HOMEDIR}/.config/youtube-dl @mkdir -p ${HOMEDIR}/.config/aerospace
@cp .config/youtube-dl/config ${HOMEDIR}/.config/youtube-dl @cp .config/aerospace/aerospace.toml ${HOMEDIR}/.config/aerospace
deploy-ghostty: ## Deploy Ghostty config
@echo "\033[1;32m>>>\033[1;0m Deploy Ghostty config to ${HOMEDIR}/.config/ghostty"
@mkdir -p ${HOMEDIR}/.config/ghostty
@cp .config/ghostty/config ${HOMEDIR}/.config/ghostty
deploy-git: ## Deploy Git config
@echo "\033[1;32m>>>\033[1;0m Deploy Git config to ${HOMEDIR}/.config/git"
@mkdir -p ${HOMEDIR}/.config/git
@cp .config/git/config ${HOMEDIR}/.config/git
deploy-karabiner: ## Deploy Karabiner config
@echo "\033[1;32m>>>\033[1;0m Deploy Karabiner config to ${HOMEDIR}/.config/karabiner"
@mkdir -p ${HOMEDIR}/.config/karabiner/scripts
@cp .config/karabiner/karabiner.json ${HOMEDIR}/.config/karabiner
@cp .config/karabiner/scripts/*.scpt ${HOMEDIR}/.config/karabiner/scripts
deploy-zsh: ## Deploy zsh config deploy-zsh: ## Deploy zsh config
@echo "\033[1;32m>>>\033[1;0m Deploy zsh config to ${HOMEDIR}/.config/zsh" @echo "\033[1;32m>>>\033[1;0m Deploy zsh config to ${HOMEDIR}/.config/zsh"

View File

@@ -20,23 +20,25 @@ The repo ships with a Makefile that you can use to deploy and update the dotfile
# make help # make help
help This help help This help
all Update repo and run deploy-macos all Update repo and run deploy-macos
install Update repor and run deploy-base install Update repo and run deploy-base
deploy-base Only deploy basic conf files for shell usage deploy-base Only deploy basic conf files for shell usage (eza, tmux, vim, zsh, ssh, hushlogin, git, htop)
deploy-workstation Deploy workstation specific config files (inherits deploy-shell) deploy-workstation Deploy platform-independent workstation config files (inherits deploy-base)
deploy-macos Deploy macOS specific config files (inherits deploy-workstation) deploy-macos Deploy macOS specific config files (inherits deploy-workstation)
gen-vscode-extension-list Update the list of VSCode extensions gen-vscode-extension-list Update the list of VSCode extensions
git-fetch Fetch changes from origin git-fetch Fetch changes from origin
git-push Push changes to origin git-push Push changes to origin
git-update-submodules Update all submodules git-update-submodules Update all submodules
brew-bundle Install applications with brew bundle brew-bundle Install applications with brew bundle
brew-bundle-cleanup Removew all appplications that are not listed in Brewfile brew-bundle-cleanup Remove all applications that are not listed in Brewfile
deploy-duti Deploy duti config deploy-eza Deploy eza config
deploy-htop Deploy htop config deploy-htop Deploy htop config
deploy-htop-zfs Deploy htop config with zfs
deploy-tmux Deploy tmux config deploy-tmux Deploy tmux config
deploy-vim Deploy vim config deploy-vim Deploy vim config
deploy-vscode Deploy VSCode config deploy-vscode Deploy VSCode config
deploy-youtubedl Deploy youtube-dl config deploy-aerospace Deploy Aerospace config
deploy-ghostty Deploy Ghostty config
deploy-git Deploy Git config
deploy-karabiner Deploy Karabiner config
deploy-zsh Deploy zsh config deploy-zsh Deploy zsh config
deploy-brewfile Deploy Brewfile deploy-brewfile Deploy Brewfile
deploy-ssh Deploy SSH config deploy-ssh Deploy SSH config