Sun, 15 Apr 2007 05:28:07 +0000
The last of the merge fix-ups.
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
1 | # |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
2 | # Makefile.mingw |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
3 | # |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
4 | # Description: Makefile for win32 (mingw) version of Pidgin pixmaps |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
5 | # |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
6 | |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
7 | PIDGIN_TREE_TOP := ../.. |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
8 | include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
9 | |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
10 | datadir := $(PIDGIN_INSTALL_DIR) |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
11 | include ./Makefile.am |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
12 | |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
13 | .PHONY: install |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
14 | |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
15 | install: |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
16 | if test '$(SUBDIRS)'; then \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
17 | list='$(SUBDIRS)'; for subdir in $$list; do \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
18 | $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) install || exit 1 ;\ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
19 | done; \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
20 | fi; |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
21 | if test '$(pidginbuttonpix_DATA)'; then \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
22 | mkdir -p $(pidginbuttonpixdir); \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
23 | cp $(pidginbuttonpix_DATA) $(pidginbuttonpixdir); \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
24 | fi; |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
25 | if test '$(pidgindialogpix_DATA)'; then \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
26 | mkdir -p $(pidgindialogpixdir); \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
27 | cp $(pidgindialogpix_DATA) $(pidgindialogpixdir); \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
28 | fi; |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
29 | if test '$(pidginiconpix_DATA)'; then \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
30 | mkdir -p $(pidginiconpixdir); \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
31 | cp $(pidginiconpix_DATA) $(pidginiconpixdir); \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
32 | fi; |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
33 | if test '$(pidgindistpix_DATA)'; then \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
34 | mkdir -p $(pidgindistpixdir); \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
35 | cp $(pidgindistpix_DATA) $(pidgindistpixdir); \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
36 | fi; |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
37 | # if test '$(distpixmap_DATA)'; then \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
38 | # mkdir -p $(distpixmapdir); \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
39 | # cp $(distpixmap_DATA) $(distpixmapdir); \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
40 | # fi; |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15999
diff
changeset
|
41 |