annotate pixmaps/Makefile.mingw @ 4514:7521e29658bc

[gaim-migrate @ 4792] Of course, file transfer wasn't really gone.. I'm trying my hardest to bring on the end of the world (see the roadmap at http://gaim.sf.net/roadmap.png). File transfer is being rewritten. This isn't the finished implementation, but it's enough to let us get the prpls working. There is now a file transfer dialog, which will appear when you get a new transfer request or when you go to Tools -> File Transfers. This is of course core/UI split. I'll also be working on documentation on how to write FT support in a prpl. Oh, and I'll get resumes and transfer batches done when school isn't breathing down my back. Only DCC receive in IRC currently works. Sorry. We'll get the other prpls working soon, as well as send. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 04 Feb 2003 06:57:35 +0000
parents 5f0385678315
children bc494c4a3991
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4318
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
1 #
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
2 # Makefile.mingw
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
3 #
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
4 # Description: Makefile for win32 (mingw) version of Gaim pixmaps
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
5 #
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
6
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
7 datadir = ../win32-install-dir
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
8
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
9 include ./Makefile.am
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
10
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
11 install:
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
12 if test '$(SUBDIRS)'; then \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
13 list='$(SUBDIRS)'; for subdir in $$list; do \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
14 $(MAKE) -C $$subdir -f Makefile.mingw install; \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
15 done; \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
16 fi;
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
17 if test '$(gaimbuttonpix_DATA)'; then \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
18 mkdir -p $(gaimbuttonpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
19 cp $(gaimbuttonpix_DATA) $(gaimbuttonpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
20 fi;
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
21 if test '$(gaimdialogpix_DATA)'; then \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
22 mkdir -p $(gaimdialogpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
23 cp $(gaimdialogpix_DATA) $(gaimdialogpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
24 fi;
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
25 if test '$(gaimmenupix_DATA)'; then \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
26 mkdir -p $(gaimmenupixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
27 cp $(gaimmenupix_DATA) $(gaimmenupixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
28 fi;
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
29 if test '$(gaimdistpix_DATA)'; then \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
30 mkdir -p $(gaimdistpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
31 cp $(gaimdistpix_DATA) $(gaimdistpixdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
32 fi;
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
33 if test '$(distpixmap_DATA)'; then \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
34 mkdir -p $(distpixmapdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
35 cp $(distpixmap_DATA) $(distpixmapdir); \
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
36 fi;
5f0385678315 [gaim-migrate @ 4573]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff changeset
37