25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- DOTDEE=update-dotdee
- STOW=xstow
- PWD=$(shell pwd)
- STOWOPTS=-target $(HOME) -d $(PWD)
- DOTGITCONFIG=~/.gitconfig
- DOTPROFILE=~/.profile
-
- .PHONY: mosh common emacs git ruby haskell perl tmux vim zsh list home osx linux ws
-
- home: $(DOTGITCONFIG) $(DOTPROFILE)
- $(DOTDEE) $(DOTPROFILE)
-
- ws: common mosh git ruby haskell perl tmux vim zsh home
-
- all: home
-
- $(DOTGITCONFIG):
- touch $(DOTGITCONFIG)
- $(DOTDEE) $(DOTGITCONFIG)
-
- clean:
- $(STOW) $(STOWOPTS) -D mosh common emacs git ruby haskell perl tmux vim zsh osx
-
- $(DOTPROFILE):
- touch $(DOTPROFILE)
- $(DOTDEE) $(DOTPROFILE)
-
- common:
- $(STOW) $(STOWOPTS) common
-
- # Specific stows, nothing special
- git:
- $(STOW) $(STOWOPTS) git
-
- emacs:
- $(STOW) $(STOWOPTS) emacs # $@?
-
- osx:
- $(STOW) $(STOWOPTS) osx
-
- linux:
- $(STOW) $(STOWOPTS) linux
-
- x:
- $(STOW) $(STOWOPTS) x
-
- ruby:
- $(STOW) $(STOWOPTS) ruby
-
- mosh:
- $(STOW) $(STOWOPTS) mosh
-
- zsh:
- $(STOW) $(STOWOPTS) zsh
-
- tmux:
- $(STOW) $(STOWOPTS) tmux
-
- vim:
- $(STOW) $(STOWOPTS) vim
-
- haskell:
- $(STOW) $(STOWOPTS) haskell
-
- perl:
- $(STOW) $(STOWOPTS) perl
|