Mercurial > pidgin
annotate share/sounds/Makefile.mingw @ 28523:9832ae3b94fd
merge of 'ac8595402f07bcd2e5467756aa6ccf6d9daf907a'
and 'cea0a94190c6ddf69977976b807b9bc5aa880987'
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Fri, 06 Nov 2009 21:28:04 +0000 |
parents | 4c26b23e7859 |
children |
rev | line source |
---|---|
19115 | 1 # |
2 # Makefile.mingw | |
3 # | |
4 # Description: Makefile for win32 (mingw) version of Pidgin sounds | |
5 # | |
6 | |
7 PIDGIN_TREE_TOP := ../.. | |
8 include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak | |
9 | |
10 datadir := $(PIDGIN_INSTALL_DIR) | |
11 include ./Makefile.am | |
12 | |
13 .PHONY: install | |
14 | |
15 install: | |
16 if test '$(sounds_DATA)'; then \ | |
17 mkdir -p $(soundsdir); \ | |
18 cp $(sounds_DATA) $(soundsdir); \ | |
19 fi; | |
20 |