blob: 70c3bfeb8ab4d33964807f7acb4941353d51c37a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
GRAFIXDIRS = default
grafixdir = $(kde_datadir)/twin4/grafix
uninstall-local:
rm -rf $(DESTDIR)$(grafixdir)
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(grafixdir)
for i in $(GRAFIXDIRS); do \
if test -d $(DESTDIR)$(grafixdir)/$$i; then \
echo "refreshing and removing $$i" ;\
rm -rf $(DESTDIR)$(grafixdir)/$$i;\
fi ;\
echo "installing $$i" ;\
if test ! -d $(DESTDIR)$(grafixdir)/$$i; then \
cp -r $(srcdir)/$$i $(DESTDIR)$(grafixdir)/$$i ;\
rm -rf $(DESTDIR)$(grafixdir)/$$i/CVS ;\
rm -rf $(DESTDIR)$(grafixdir)/$$i/.svn ;\
fi ;\
done
|