diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-04-08 08:42:23 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-04-08 08:42:23 -0700 |
commit | 2311bceffc75a093bfb13ee292c40d2c2232b057 (patch) | |
tree | 4fa31281e5e41dc8b7614808d598e3ca8942d3f4 /Makefile | |
parent | [tmux] A few more changes. (diff) | |
download | emacs.d-2311bceffc75a093bfb13ee292c40d2c2232b057.tar.gz |
[scripts] Add a directory for scripts.
First thing first: where to store screenshots.
Diffstat (limited to '')
-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 |