diff options
author | Martin Schenck | 2017-02-26 14:25:20 +0100 |
---|---|---|
committer | Martin Schenck | 2017-02-26 14:25:20 +0100 |
commit | b71c2bff28db457e7dd0f26cc8b69ed5407d1953 (patch) | |
tree | 87a4b6ad08d27b6789776e6eb59ff9e98f614f28 /common/Makefile.am | |
parent | ed16495611292c2c399f96ef5a9cfe35c0291748 (diff) | |
parent | 0af4e07f1b35a8dfae9af6a2722060045c356972 (diff) | |
download | solarc-theme-b71c2bff28db457e7dd0f26cc8b69ed5407d1953.tar.gz solarc-theme-b71c2bff28db457e7dd0f26cc8b69ed5407d1953.tar.xz solarc-theme-b71c2bff28db457e7dd0f26cc8b69ed5407d1953.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'common/Makefile.am')
-rw-r--r-- | common/Makefile.am | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index 8f83496..ec569b6 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -29,6 +29,8 @@ endif # ENABLE_DARK if ENABLE_CINNAMON $(MKDIR_P) $(ithemedir)/cinnamon + cd $(srcdir)/cinnamon && cp thumbnail.png $(ithemedir)/cinnamon + cd $(srcdir)/cinnamon && cp -R \ common-assets \ light-assets \ @@ -38,6 +40,8 @@ if ENABLE_CINNAMON if ENABLE_DARK $(MKDIR_P) $(ithemedarkdir)/cinnamon + cd $(srcdir)/cinnamon && cp thumbnail-dark.png $(ithemedarkdir)/cinnamon/thumbnail.png + cd $(srcdir)/cinnamon && cp -R \ common-assets \ dark-assets \ @@ -128,6 +132,8 @@ if ENABLE_GTK3 if ENABLE_LIGHT $(MKDIR_P) $(ithemedir)/gtk-3.0 + cd $(srcdir)/gtk-3.0 && cp thumbnail.png $(ithemedir)/gtk-3.0 + cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ assets \ gtk.css \ @@ -138,6 +144,8 @@ endif # ENABLE_LIGHT if ENABLE_DARKER $(MKDIR_P) $(ithemedarkerdir)/gtk-3.0 + cd $(srcdir)/gtk-3.0 && cp thumbnail.png $(ithemedarkerdir)/gtk-3.0 + cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ assets \ gtk-dark.css \ @@ -151,6 +159,8 @@ endif # ENABLE_DARKER if ENABLE_DARK $(MKDIR_P) $(ithemedarkdir)/gtk-3.0 + cd $(srcdir)/gtk-3.0 && cp thumbnail-dark.png $(ithemedarkdir)/gtk-3.0/thumbnail.png + cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ assets \ $(ithemedarkdir)/gtk-3.0 @@ -198,7 +208,7 @@ if ENABLE_METACITY if ENABLE_LIGHT cp -R $(srcdir)/metacity-1 $(ithemedir) - cd $(ithemedir)/metacity-1 && rm metacity-theme-1-dark.xml metacity-theme-2-dark.xml + cd $(ithemedir)/metacity-1 && rm metacity-theme-1-dark.xml metacity-theme-2-dark.xml thumbnail-dark.png endif # ENABLE_LIGHT if ENABLE_DARKER @@ -206,7 +216,8 @@ if ENABLE_DARKER cd $(ithemedarkerdir)/metacity-1 && \ mv metacity-theme-1-dark.xml metacity-theme-1.xml && \ - mv metacity-theme-2-dark.xml metacity-theme-2.xml + mv metacity-theme-2-dark.xml metacity-theme-2.xml && \ + mv thumbnail-dark.png thumbnail.png endif # ENABLE_DARKER if ENABLE_DARK @@ -214,7 +225,8 @@ if ENABLE_DARK cd $(ithemedarkdir)/metacity-1 && \ mv metacity-theme-1-dark.xml metacity-theme-1.xml && \ - mv metacity-theme-2-dark.xml metacity-theme-2.xml + mv metacity-theme-2-dark.xml metacity-theme-2.xml && \ + mv thumbnail-dark.png thumbnail.png endif # ENABLE_DARK endif # ENABLE_METACITY |