A mirror of the icon theme used by MadHelix.

[[ 🗃 ^nE0PE adwaita-icon-theme ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/nE0PE

SSH: git clone USERNAME@vervis.peers.community:nE0PE

Branches

Tags

master :: src / symbolic /

Makefile.am


icon_in_files = $(shell SRCDIR="$(srcdir)"; for i in `find $$SRCDIR -name "*.svg"`; do printf "$$i "; done)

if ALLOW_RENDERING
render-png: $(icon_in_files) Makefile
	for file in $(icon_in_files); do \
		for size in $(symbolic_render_sizes); do \
			$(ICONTOOL_RENDER) -s $$size -o $(top_builddir)/$(SVGOUTDIR) $$file >/dev/null; \
		done; \
	done

else
render-png: $(icon_in_files) Makefile

endif

$(symbolic_render_sizes): Makefile

render: render-png

all-local: render

install-data-local:
	for size in $(symbolic_render_sizes); do \
		for file in `cd $(top_srcdir)/$(SVGOUTDIR)/$$size; find . -name "*.png"`; do \
			context="`dirname $$file`"; \
			$(mkdir_p) $(DESTDIR)$(themedir)/$$size/$$context; \
			$(install_sh_DATA) $(top_srcdir)/$(SVGOUTDIR)/$$size/$$file $(DESTDIR)$(themedir)/$$size/$$file; \
		done; \
	done
	for file in `cd $(top_srcdir)/$(SVGOUTDIR)/scalable; find . -name "*.svg"`; do \
		context="`dirname $$file`"; \
		$(mkdir_p) $(DESTDIR)$(themedir)/scalable/$$context; \
		$(install_sh_DATA) $(top_srcdir)/$(SVGOUTDIR)/scalable/$$file $(DESTDIR)$(themedir)/scalable/$$file; \
		for size in $(symbolic_encode_sizes); do \
			$(mkdir_p) $(DESTDIR)$(themedir)/$$size/$$context; \
			$(GTK_ENCODE_SYMBOLIC_SVG) $(top_srcdir)/$(SVGOUTDIR)/scalable/$$file $$size -o $(DESTDIR)$(themedir)/$$size/$$context; \
		done \
	done

uninstall-local:
	for file in `cd $(top_srcdir)/$(SVGOUTDIR)/scalable; find . -name "*.svg"`; do \
		context="`dirname $$file`"; \
		rm -f $(DESTDIR)$(themedir)/scalable/$$file; \
		for size in $(symbolic_encode_sizes); do \
			name="`basename $$file .svg`.symbolic.png"; \
			rm -f $(DESTDIR)/$(themedir)/$$size/$$context/$$name; \
		done; \
	done

EXTRA_DIST =			\
	$(icon_in_files)


MAINTAINERCLEANFILES =		\
	*~			\
	Makefile.in		\
	$(icon_cache)

-include $(top_srcdir)/git.mk

[See repo JSON]