diff options
author | Colomban Wendling <[email protected]> | 2024-04-16 14:41:35 +0200 |
---|---|---|
committer | Victor Kareh <[email protected]> | 2024-04-23 08:51:53 -0400 |
commit | 33f05a252cd2f8f39eaa0fb6df9210c47995ac0e (patch) | |
tree | b24990d94b8658fe83685ee0f53bcc35bc6dabc1 /data/icons/24x24 | |
parent | c5b2dfc82baeaa998b414fc90efcc15f11f17925 (diff) | |
download | atril-master.tar.bz2 atril-master.tar.xz |
Replace full-subdirs with a single Makefile for all icons, making
things both simpler and more concise.
Also, properly use Automake variable prefixes instead of doing it
manually.
Diffstat (limited to 'data/icons/24x24')
-rw-r--r-- | data/icons/24x24/Makefile.am | 3 | ||||
-rw-r--r-- | data/icons/24x24/actions/Makefile.am | 23 | ||||
-rw-r--r-- | data/icons/24x24/apps/Makefile.am | 16 | ||||
-rw-r--r-- | data/icons/24x24/mimetypes/Makefile.am | 16 |
4 files changed, 0 insertions, 58 deletions
diff --git a/data/icons/24x24/Makefile.am b/data/icons/24x24/Makefile.am deleted file mode 100644 index b02d3a8c..00000000 --- a/data/icons/24x24/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -SUBDIRS = actions apps mimetypes - --include $(top_srcdir)/git.mk diff --git a/data/icons/24x24/actions/Makefile.am b/data/icons/24x24/actions/Makefile.am deleted file mode 100644 index f44f8b6b..00000000 --- a/data/icons/24x24/actions/Makefile.am +++ /dev/null @@ -1,23 +0,0 @@ -themedir = $(pkgdatadir)/icons/hicolor -size = 24x24 -context = actions - -iconsdir = $(themedir)/$(size)/$(context) - -icons_DATA = \ - stock_filters-invert.png \ - view-page-continuous.png \ - view-page-facing.png \ - zoom.png \ - zoom-fit-height.png \ - zoom-fit-width.png \ - object-rotate-left.png \ - object-rotate-right.png - -noinst_DATA = - -EXTRA_DIST = \ - $(icons_DATA) \ - $(noinst_DATA) - --include $(top_srcdir)/git.mk diff --git a/data/icons/24x24/apps/Makefile.am b/data/icons/24x24/apps/Makefile.am deleted file mode 100644 index e23a2ba9..00000000 --- a/data/icons/24x24/apps/Makefile.am +++ /dev/null @@ -1,16 +0,0 @@ -themedir = $(datadir)/icons/hicolor -size = 24x24 -context = apps - -iconsdir = $(themedir)/$(size)/$(context) - -icons_DATA = \ - atril.png - -noinst_DATA = - -EXTRA_DIST = \ - $(icons_DATA) \ - $(noinst_DATA) - --include $(top_srcdir)/git.mk diff --git a/data/icons/24x24/mimetypes/Makefile.am b/data/icons/24x24/mimetypes/Makefile.am deleted file mode 100644 index b4025de3..00000000 --- a/data/icons/24x24/mimetypes/Makefile.am +++ /dev/null @@ -1,16 +0,0 @@ -themedir = $(pkgdatadir)/icons/hicolor -size = 24x24 -context = mimetypes - -iconsdir = $(themedir)/$(size)/$(context) - -icons_DATA = \ - x-office-presentation.png - -noinst_DATA = - -EXTRA_DIST = \ - $(icons_DATA) \ - $(noinst_DATA) - --include $(top_srcdir)/git.mk |