]> git.draconx.ca Git - rrace.git/blobdiff - Makefile.am
Generate and distribute some icon files.
[rrace.git] / Makefile.am
index acd8c2bf1dcc2f79c66d42a958e320a2dff1e827..056695344cf9598f9c68e18bc7d680e5f22c5c8f 100644 (file)
@@ -81,5 +81,69 @@ $(t_ewmhicon_OBJECTS): $(gnulib_headers)
 t_rng_test_LDADD = libgnu.a
 $(t_rng_test_OBJECTS): $(gnulib_headers)
 
+GENPNG_V = $(GENPNG_V_@AM_V@)
+GENPNG_V_ = $(GENPNG_V_@AM_DEFAULT_V@)
+GENPNG_V_0 = @printf '  %$(DX_ALIGN_V)s %s\n' 'GEN    ' $*.png;
+
+$(GENICONS:.png=.gen):
+       $(GENPNG_V) $(MKDIR_P) $(@D)
+       $(AM_V_at) s=`expr $(@F) : '[^0-9]*\([^.]*\)'`; \
+         t/ewmhicon$(EXEEXT) -c yrwyogbbg "$$s" >$*.xpm
+if USE_NETPBM
+       $(AM_V_at) $(XPMTOPPM) $*.xpm | $(PNMTOPNG) >$*-t.png
+else
+if USE_CONVERT
+       $(AM_V_at) $(CONVERT) $*.xpm $*-t.png
+endif
+endif
+       $(AM_V_at) $(OPTIPNG) -o7 -quiet $*-t.png
+       $(AM_V_at) mv -f $*-t.png $*.png
+MOSTLYCLEANFILES += $(GENICONS:.png=-t.png)
+DISTCLEANFILES += $(GENICONS:.png=.xpm)
+MAINTAINERCLEANFILES += $(GENICONS)
+SUFFIXES = .gen
+
+GENICONS = data/rr48x48.png data/rr32x32.png data/rr24x24.png data/rr16x16.png
+$(GENICONS): ;
+
+build-icons: t/ewmhicon$(EXEEXT) $(GENICONS)
+       $(AM_V_at) set x $(GENICONS:.png=); shift; for f; do shift; \
+         test -f "$$f.png" || test -f "$(srcdir)/$$f.png" || \
+           { set x "$$@" "$$f.gen"; shift; }; \
+         done; $(MAKE) $(AM_MAKEFLAGS) "$$@"
+.PHONY: build-icons
+
+dist-hook: dist-icons
+dist-icons: build-icons
+       $(MKDIR_P) $(distdir)/data
+       for f in $(GENICONS); do \
+         if test -f "$$f"; \
+           then cp "$$f" "$(distdir)/data" || exit; \
+           else cp "$(srcdir)/$$f" "$(distdir)/data" || exit; \
+         fi; done
+.PHONY: dist-icons
+
+iconsdir = $(datarootdir)/icons/hicolor
+
+install-data-local: install-icons
+install-icons: build-icons
+       for f in $(GENICONS); do \
+         s=`expr "$$f" : '[^0-9]*\([^.]*\)'`; \
+         od="$(DESTDIR)$(iconsdir)/$$s/apps"; \
+         $(MKDIR_P) "$$od"; if test -f "$$f"; \
+           then $(INSTALL_DATA) "$$f" "$$od/$(PACKAGE_TARNAME).png"; \
+           else $(INSTALL_DATA) "$(srcdir)/$$f" "$$od/$(PACKAGE_TARNAME).png";\
+         fi; done
+.PHONY: install-icons
+
+uninstall-local: uninstall-icons
+uninstall-icons:
+       for f in $(GENICONS); do \
+         s=`expr "$$f" : '[^0-9]*\([^.]*\)'`; \
+         od="$(DESTDIR)$(iconsdir)/$$s/apps"; \
+         rm -f "$$od/$(PACKAGE_TARNAME).png"; \
+         done
+.PHONY: uninstall-icons
+
 include $(top_srcdir)/lib/gnulib.mk
 include $(top_srcdir)/common/snippet/autotest.mk