annotate share/Makefile.mingw @ 20343:76f85fb7759f

applied changes from f9d3abd0678a04291edd671c4e5d87c7217984bb through a7fd1a77d527c2399c6ab65560c834c989a83427
author Luke Schierer <lschiere@pidgin.im>
date Sun, 21 Oct 2007 04:40:07 +0000
parents ceb6561c5865
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19193
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
1 #
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
2 # Makefile.mingw
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
3 #
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
4 # Description: Makefile for win32 (mingw) version
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
5 #
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
6
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
7 PIDGIN_TREE_TOP := ..
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
8 include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
9
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
10 include ./Makefile.am
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
11
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
12 .PHONY: install clean
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
13
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
14 install:
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
15 if test '$(SUBDIRS)'; then \
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
16 list='$(SUBDIRS)'; for subdir in $$list; do \
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
17 $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) install || exit 1 ;\
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
18 done; \
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
19 fi;