view share/sounds/Makefile.mingw @ 28289:ad04e3ffb3d5

Don't attempt to remove the master group in our cleanlist function. This probably happens very rarely, and probably isn't important, but http://dev.aol.com/aim/oscar/#FEEDBAG says, "The Root Group should never be deleted by the client."
author Mark Doliner <mark@kingant.net>
date Thu, 24 Sep 2009 01:29:56 +0000
parents 4c26b23e7859
children
line wrap: on
line source

#
# Makefile.mingw
#
# Description: Makefile for win32 (mingw) version of Pidgin sounds
#

PIDGIN_TREE_TOP := ../..
include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak

datadir := $(PIDGIN_INSTALL_DIR)
include ./Makefile.am

.PHONY: install

install:
	if test '$(sounds_DATA)'; then \
	  mkdir -p $(soundsdir); \
	  cp $(sounds_DATA) $(soundsdir); \
	fi;