summaryrefslogtreecommitdiffstats
path: root/kwin4/grafix/Makefile.am
blob: 6390e0712bc53e7a1c91e3aaf3dd0f72851f648e (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)/kwin4/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