ソースを参照

Fix setup-rc tasks

pull/15/head
10sr 8年前
コミット
90a55dd773
1個のファイルの変更4行の追加4行の削除
  1. +4
    -4
      Makefile

+ 4
- 4
Makefile ファイルの表示

@@ -397,13 +397,13 @@ setup_rc_marker := ADDED BY 10sr_dotfiles/Makefile
$(home)/.emacs.d/init.el $(home)/.vimrc $(home)/.tmux.conf:
set -x; if ! $(grep) "$(setup_rc_marker)" "$@"; \
then \
(echo '$(line_comment)' $(setup_rc_marker); cat "$<" | $(command_extract_setup_load)) \
(echo $(line_comment) $(setup_rc_marker); cat "$<" | $(command_extract_setup_load)) \
| tee -a "$@"; \
fi

$(home)/.emacs.d/init.el: line_comment := ;;
$(home)/.vimrc: line_comment := \"
$(home)/.tmux.conf: line_comment := \#
$(home)/.emacs.d/init.el: line_comment := ';;'
$(home)/.vimrc: line_comment := '"'
$(home)/.tmux.conf: line_comment := '#'





読み込み中…
キャンセル
保存