Makefile
changeset 43 7c9cd891400b
child 44 19b74f7cd49a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Sun Jun 29 22:22:36 2008 -0400
@@ -0,0 +1,14 @@
+# Copyright (C) 2008 by Oleksandr Gavenko <gavenkoa@gmail.com>
+
+ifeq '' '$(HOME)'
+  $(error Home env var not set!)
+endif
+
+.PHONY: all install
+
+all: install
+
+install: .emacs .emacs-my
+	for file in $^; do \
+        cp $$file $(HOME)/$$file; \
+    done