Sat, 18 Aug 2007 05:54:49 +0000
- Add purple_certificate_display_x509
|
17723
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
1 | # |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
2 | # Makefile.mingw |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
3 | # |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
4 | # Description: Makefile for win32 (mingw) version of Pidgin pixmaps |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
5 | # |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
6 | |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
7 | PIDGIN_TREE_TOP := ../../../.. |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
8 | include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
9 | |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
10 | datadir = $(PIDGIN_INSTALL_DIR) |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
11 | include ./Makefile.am |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
12 | |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
13 | .PHONY: install |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
14 | |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
15 | install: |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
16 | if test '$(pidgintraypix_DATA)'; then \ |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
17 | mkdir -p $(pidgintraypixdir); \ |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
18 | cp $(pidgintraypix_DATA) $(pidgintraypixdir); \ |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
19 | fi; |
|
65ecb14a9c8f
Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows.
Daniel Atallah <datallah@pidgin.im>
parents:
diff
changeset
|
20 |