mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
17 lines
360 B
Makefile
17 lines
360 B
Makefile
install-brew:
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
|
|
install-brew-recipes:
|
|
@brew install stow \
|
|
httpie \
|
|
zsh
|
|
|
|
install-brew-casks:
|
|
@brew install --cask docker \
|
|
google-chrome
|
|
|
|
stow:
|
|
@stow --stow --verbose --target ~ */
|
|
|
|
fresh-install: install-brew install-brew-recipes install-brew-casks stow
|