annotate share/Makefile.mingw @ 20918:8fa6ff212db7

Use glib guint32 type instead of uint32_t. Fixes #3511.
author Daniel Atallah <daniel.atallah@gmail.com>
date Sat, 13 Oct 2007 17:37:55 +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;