comparison libpurple/protocols/qq/Makefile.mingw @ 24322:d971d5369b43

2008.10.30 - flos <lonicerae(at)gmail.com> * Fixed a bug which made xgettext failed in buddy_info.c * Fixed a bug in Makefile.am and Makefile.mingw * Updated acknowledgement in qq.c
author SHiNE CsyFeK <csyfek@gmail.com>
date Thu, 30 Oct 2008 12:41:36 +0000
parents 1ee91ff0d5fe
children fecedf6d9ee1
comparison
equal deleted inserted replaced
24321:e4f4ffd7ed4c 24322:d971d5369b43
4 # Description: Makefile for win32 (mingw) version of the QQ prpl 4 # Description: Makefile for win32 (mingw) version of the QQ prpl
5 # 5 #
6 6
7 PIDGIN_TREE_TOP := ../../.. 7 PIDGIN_TREE_TOP := ../../..
8 include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak 8 include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak
9
9 CURRENT_REVISION=$(shell \ 10 CURRENT_REVISION=$(shell \
10 awk 'BEGIN {"grep node .hg_archival.txt" | getline rev; \ 11 if [ -e ./.hg_archival.txt ]; then \
11 rev=substr(rev,7,6); \ 12 awk 'BEGIN {"grep node .hg_archival.txt" | getline rev; \
12 print rev}') 13 rev=substr(rev,7,6); print rev}' > current_revision; \
14 else \
15 echo "!hg" > current_revision; \
16 fi; \
17 cat ./current_revision)
18
13 TARGET = libqq 19 TARGET = libqq
14 TYPE = PLUGIN 20 TYPE = PLUGIN
15 21
16 # Static or Plugin... 22 # Static or Plugin...
17 ifeq ($(TYPE),STATIC) 23 ifeq ($(TYPE),STATIC)