view skins/Default/Makefile @ 3550:6b0be1d088e6 trunk

- subtune handling is now done in playlist core, using tuple fields subsong-id and subsong-num (requires subtune-able plugins to be updated)
author Giacomo Lozito <james@develia.org>
date Tue, 18 Sep 2007 19:00:07 +0200
parents 9ddf21ab5c84
children
line wrap: on
line source

include ../../buildsys.mk

skindir = $(pkgdatadir)/Skins/Default

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

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