Mercurial > pidgin.yaz
annotate pidgin/pixmaps/Makefile.mingw @ 21294:8f3f166e0a39
Allow myspace to build outside of the source tree
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Sat, 10 Nov 2007 15:21:01 +0000 |
parents | 566b52a449b9 |
children | 708b51ddddc4 |
rev | line source |
---|---|
16039
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
1 # |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
2 # Makefile.mingw |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
3 # |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
4 # Description: Makefile for win32 (mingw) version of Pidgin pixmaps |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
5 # |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
6 |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
7 PIDGIN_TREE_TOP := ../.. |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
8 include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
9 |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
10 datadir := $(PIDGIN_INSTALL_DIR) |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
11 include ./Makefile.am |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
12 |
18657
46629aab70b1
Make sure we delete all generated files with the mingw clean make target.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
16723
diff
changeset
|
13 .PHONY: install clean |
16039
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
14 |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
15 install: |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
16 if test '$(SUBDIRS)'; then \ |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
17 list='$(SUBDIRS)'; for subdir in $$list; do \ |
21154
566b52a449b9
We dont need the icons on Windows.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
21147
diff
changeset
|
18 if [[ "$$subdir" != icons/* ]]; then \ |
16039
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
19 $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) install || exit 1 ;\ |
21034
25e7de9c9df1
Fix win32 pixmaps/Makefile.mingw and remove unused Makefile.mingw's
Stu Tomlinson <stu@nosnilmot.com>
parents:
18657
diff
changeset
|
20 fi \ |
16039
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
21 done; \ |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
22 fi; |
21037
54c33a552eb6
Makefile.mingw updates to install animations/16 files without a Makefile in
Stu Tomlinson <stu@nosnilmot.com>
parents:
21034
diff
changeset
|
23 if test '$(nobase_dist_pidginpixmap_DATA)'; then \ |
54c33a552eb6
Makefile.mingw updates to install animations/16 files without a Makefile in
Stu Tomlinson <stu@nosnilmot.com>
parents:
21034
diff
changeset
|
24 list='$(nobase_dist_pidginpixmap_DATA)'; for file in $$list; do \ |
54c33a552eb6
Makefile.mingw updates to install animations/16 files without a Makefile in
Stu Tomlinson <stu@nosnilmot.com>
parents:
21034
diff
changeset
|
25 dir=`dirname $$file`; \ |
54c33a552eb6
Makefile.mingw updates to install animations/16 files without a Makefile in
Stu Tomlinson <stu@nosnilmot.com>
parents:
21034
diff
changeset
|
26 mkdir -p $(pidginpixmapdir)/$$dir; \ |
54c33a552eb6
Makefile.mingw updates to install animations/16 files without a Makefile in
Stu Tomlinson <stu@nosnilmot.com>
parents:
21034
diff
changeset
|
27 cp $$file $(pidginpixmapdir)/$$dir/; \ |
54c33a552eb6
Makefile.mingw updates to install animations/16 files without a Makefile in
Stu Tomlinson <stu@nosnilmot.com>
parents:
21034
diff
changeset
|
28 done; \ |
54c33a552eb6
Makefile.mingw updates to install animations/16 files without a Makefile in
Stu Tomlinson <stu@nosnilmot.com>
parents:
21034
diff
changeset
|
29 fi; |
16039
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
30 if test '$(pidginbuttonpix_DATA)'; then \ |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
31 mkdir -p $(pidginbuttonpixdir); \ |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
32 cp $(pidginbuttonpix_DATA) $(pidginbuttonpixdir); \ |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
33 fi; |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
34 if test '$(pidgindistpix_DATA)'; then \ |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
35 mkdir -p $(pidgindistpixdir); \ |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
36 cp $(pidgindistpix_DATA) $(pidgindistpixdir); \ |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
37 fi; |
ded8da3de5f8
This should get all the Win32 Makefiles in line with
Kevin Stange <kevin@simguy.net>
parents:
15938
diff
changeset
|
38 |