blob: afb339cc2ef732e8549e4bd67280f24a72ce0e55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
HOME=/home/urbain
TARGETS=$(HOME)/.offlineimaprc $(HOME)/.offlineimap.py
all : $(TARGETS)
$(HOME)/.offlineimaprc :
ln -s $(PWD)/offlineimaprc $@
$(HOME)/.offlineimap.py :
ln -s $(PWD)/offlineimap.py $@
clean :
rm -f $(TARGETS)
|