1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
ithemedir = $(DESTDIR)$(themedir)
ithemedarkerdir = $(DESTDIR)$(themedarkerdir)
ithemedarkdir = $(DESTDIR)$(themedarkdir)
install-exec-hook:
install-data-local:
if ENABLE_PLANK
if ENABLE_LIGHT
$(MKDIR_P) $(ithemedir)
cp -R $(srcdir)/Arc-Plank/. $(ithemedir)/plank
endif # ENABLE_LIGHT
if ENABLE_DARKER
$(MKDIR_P) $(ithemedarkerdir)
cp -R $(srcdir)/Arc-Plank/. $(ithemedarkerdir)/plank
endif # ENABLE_DARKER
if ENABLE_DARK
$(MKDIR_P) $(ithemedarkdir)
cp -R $(srcdir)/Arc-Plank/. $(ithemedarkdir)/plank
endif # ENABLE_DARK
endif # ENABLE_PLANK
uninstall-local:
EXTRA_DIST = \
Arc-Plank
|