diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile index e71e986..7e44a5e 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,13 @@ $(HOME)/.ssh/authorized_keys: $(HOME)/workspace: @mkdir -p $(HOME)/workspace/ +$(HOME)/GDrive/screenshots: + @mkdir -p $(HOME)/GDrive/screenshots + +.PHONE: osx +osx: + @./scripts/osx.sh + .PHONY: git git: @git config --local user.email "franck.cuny@gmail.com" @@ -38,4 +45,4 @@ clean-dead: @find ~ -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -delete .PHONY: install -install: $(INSTALLED) $(HOME)/workspace $(HOME)/.ssh/authorized_keys +install: $(INSTALLED) $(HOME)/workspace $(HOME)/.ssh/authorized_keys $(HOME)/Documents/screenshots osx |