view icons/Makefile @ 3565:21601ce39fa1 trunk

let mainwin_othertext use xfont when cfg.mainwin_use_xfont is TRUE
author Tomasz Mon <desowin@gmail.com>
date Tue, 18 Sep 2007 21:22:09 +0200
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