소스 검색

Show warning when DOTFILES_DIR nor dotfiles_dir is defined

pull/5/head
10sr 9 년 전
부모
커밋
ec8d57a140
1개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. +10
    -1
      Makefile

+ 10
- 1
Makefile 파일 보기

@@ -5,11 +5,20 @@

home ?= $(HOME)

dotfiles_dir ?= $(home)/10sr_dotfiles
dotfiles_url_base = https://raw.githubusercontent.com/10sr/dotfiles/master/
dotfiles_git = git@github.com:10sr/dotfiles.git
dotfiles_git_pub = http://github.com/10sr/dotfiles.git

ifeq (,$(DOTFILES_DIR))
ifeq (,$(dotfiles_dir))
$(warning "Neigher DOTFILES_DIR nor dotfiles_dir not defined.")
$(warning "Use $(home)/10sr_dotfiles for default.")
endif
endif
DOTFILES_DIR ?= $(home)/10sr_dotfiles
dotfiles_dir ?= $(DOTFILES_DIR)


localdir = $(home)/.local
vardir = $(home)/.var
bindir = $(localdir)/bin


불러오는 중...
취소
저장