You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
632 B
23 lines
632 B
15 years ago
|
GRAFIXDIRS = default
|
||
|
|
||
13 years ago
|
grafixdir = $(kde_datadir)/twin4/grafix
|
||
15 years ago
|
|
||
|
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
|
||
|
|