Sat, 18 Aug 2007 05:54:49 +0000
- Add purple_certificate_display_x509
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
1 | # |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
2 | # Makefile.mingw |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
3 | # |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
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:
15456
diff
changeset
|
5 | # |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
6 | |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
7 | include ./Makefile.am |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
8 | |
|
18957
a9c2ef06b34b
Make sure we delete all generated files with the mingw clean make target.
Daniel Atallah <datallah@pidgin.im>
parents:
16100
diff
changeset
|
9 | .PHONY: install clean |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
10 | |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
11 | install: |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
12 | if test '$(SUBDIRS)'; then \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
13 | list='$(SUBDIRS)'; for subdir in $$list; do \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
14 | $(MAKE) -C $$subdir -f Makefile.mingw install || exit 1; \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
15 | done; \ |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15456
diff
changeset
|
16 | fi; |
|
18957
a9c2ef06b34b
Make sure we delete all generated files with the mingw clean make target.
Daniel Atallah <datallah@pidgin.im>
parents:
16100
diff
changeset
|
17 | |
|
a9c2ef06b34b
Make sure we delete all generated files with the mingw clean make target.
Daniel Atallah <datallah@pidgin.im>
parents:
16100
diff
changeset
|
18 | clean: |
|
a9c2ef06b34b
Make sure we delete all generated files with the mingw clean make target.
Daniel Atallah <datallah@pidgin.im>
parents:
16100
diff
changeset
|
19 | if test '$(SUBDIRS)'; then \ |
|
a9c2ef06b34b
Make sure we delete all generated files with the mingw clean make target.
Daniel Atallah <datallah@pidgin.im>
parents:
16100
diff
changeset
|
20 | list='$(SUBDIRS)'; for subdir in $$list; do \ |
|
a9c2ef06b34b
Make sure we delete all generated files with the mingw clean make target.
Daniel Atallah <datallah@pidgin.im>
parents:
16100
diff
changeset
|
21 | $(MAKE) -C $$subdir -f Makefile.mingw clean || exit 1; \ |
|
a9c2ef06b34b
Make sure we delete all generated files with the mingw clean make target.
Daniel Atallah <datallah@pidgin.im>
parents:
16100
diff
changeset
|
22 | done; \ |
|
a9c2ef06b34b
Make sure we delete all generated files with the mingw clean make target.
Daniel Atallah <datallah@pidgin.im>
parents:
16100
diff
changeset
|
23 | fi; |