annotate pidgin/pixmaps/emotes/small/16/Makefile.mingw @ 28419:36c6601d650a

It seems I need to write the smiley to the conversation for it to show up locally, because it's not done for chats like in IMs. References #10027.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sun, 23 Aug 2009 03:31:52 +0000
parents 42fe79ca351d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
24404
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
1 #
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
2 # Makefile.mingw
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
3 #
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
4 # Description: Makefile for win32 (mingw) version of Pidgin pixmaps
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
5 #
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
6
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
7 PIDGIN_TREE_TOP := ../../../../..
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
8 include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
9
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
10 datadir = $(PIDGIN_INSTALL_DIR)
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
11 -include ./Makefile.am.mingw
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
12
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
13 .PHONY: install clean
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
14
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
15 install: ./Makefile.am.mingw theme
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
16 if test '$(pidginsmileypix_DATA)'; then \
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
17 mkdir -p $(pidginsmileypixdir); \
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
18 cp $(pidginsmileypix_DATA) $(pidginsmileypixdir); \
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
19 fi;
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
20
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
21 clean:
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
22 rm -f theme ./Makefile.am.mingw
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
23
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
24 ./Makefile.am.mingw: ./Makefile.am
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
25 sed -e 's/^if\ INSTALL_PIXMAPS/ifeq (\$$(INSTALL_PIXMAPS), 1)/' ./Makefile.am > $@
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
26 include $@
42fe79ca351d Make the small smiley theme actually work.
Richard Laager <rlaager@wiktel.com>
parents:
diff changeset
27