Makefile
author Oleksandr Gavenko <gavenkoa@gmail.com>
Fri, 12 Dec 2008 21:56:22 +0200
changeset 103 7c16c6cab2b0
parent 96 1c9a7ccc584a
child 111 fcea9d3b79e1
permissions -rw-r--r--
By default .emacs also overwrite.

# Copyright (C) 2008 by Oleksandr Gavenko <gavenkoa@gmail.com>

ifeq '' '$(HOME)'
  $(error Home env var not set!)
endif

.PHONY: all install install-all

all: install

install: .emacs .emacs-my .emacs-my-pre .emacs-my-post
	for file in .emacs-my-pre .emacs-my-post; do \
		if [ ! -f $(HOME)/$$file ]; then cp $$file $(HOME)/$$file; fi; \
	done
	cp .emacs $(HOME)/.emacs
	cp .emacs-my $(HOME)/.emacs-my

install-all: .emacs .emacs-my .emacs-my-pre .emacs-my-post
	for file in $^; do \
		cp $$file $(HOME)/$$file; \
	done

dist-tar:
	tar cf dot-emacs.tar .emacs .emacs-my

clean:
	rm -f dot-emacs.tar