view icons/Makefile @ 3553:a140fadd741d trunk

software volumecontrol->flow manager API
author William Pitcock <nenolod@atheme.org>
date Tue, 18 Sep 2007 13:13:20 -0500
parents 9ddf21ab5c84
children
line wrap: on
line source

include ../buildsys.mk

pixmapsdir = $(datadir)/pixmaps

install-extra:
	y="audacious.png"; \
	for i in $$y; do \
	        ${INSTALL_STATUS}; \
		if ${MKDIR_P} ${DESTDIR}${pixmapsdir} && ${INSTALL} -m 644 $$i ${DESTDIR}${pixmapsdir}/$$i; then \
			${INSTALL_OK}; \
		else \
			${INSTALL_FAILED}; \
		fi; \
	done

uninstall-extra:
	y="audacious.png"; \
	for i in $$y; do \
		if [ -f ${DESTDIR}${pixmapsdir}/$$i ]; then \
			if rm -f ${DESTDIR}${pixmapsdir}/$$i; then \
				${DELETE_OK}; \
			else \
				${DELETE_FAILED}; \
			fi \
		fi; \
	done