mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-05 05:01:43 +00:00
16 lines
302 B
Makefile
16 lines
302 B
Makefile
########## Variables
|
|
|
|
# change to the dotfiles directory
|
|
|
|
stow: submodules
|
|
find . -maxdepth 0 -type d | xargs stow -v
|
|
|
|
submodules:
|
|
git submodule update --init --recursive
|
|
|
|
docker: Dockerfile
|
|
git clone . /tmp/dotfiles
|
|
docker build -t balkian/devmachine /tmp/dotfiles
|
|
|
|
.PHONY: stow submodules docker
|