1
0
mirror of https://github.com/balkian/dotfiles.git synced 2025-08-23 08:02:19 +00:00

Makefile!

This commit is contained in:
J. Fernando Sánchez
2017-03-24 18:11:40 +01:00
parent 37837558b1
commit 0c3fc88325
5 changed files with 44 additions and 48 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
########## 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