Makefile
changeset 43 7c9cd891400b
child 44 19b74f7cd49a
equal deleted inserted replaced
42:04fd7747bc49 43:7c9cd891400b
       
     1 # Copyright (C) 2008 by Oleksandr Gavenko <gavenkoa@gmail.com>
       
     2 
       
     3 ifeq '' '$(HOME)'
       
     4   $(error Home env var not set!)
       
     5 endif
       
     6 
       
     7 .PHONY: all install
       
     8 
       
     9 all: install
       
    10 
       
    11 install: .emacs .emacs-my
       
    12 	for file in $^; do \
       
    13         cp $$file $(HOME)/$$file; \
       
    14     done