Mercurial > pidgin.yaz
diff libpurple/protocols/Makefile.mingw @ 16039:ded8da3de5f8
This should get all the Win32 Makefiles in line with
the names Pidgin and Purple. I tried to separate PIDGIN
and PURPLE values as much as a could to make it easier to
divide them later if that's ever desired.
author | Kevin Stange <kevin@simguy.net> |
---|---|
date | Tue, 10 Apr 2007 06:19:29 +0000 |
parents | 0e17470b47c2 |
children | afee8b840d91 |
line wrap: on
line diff
--- a/libpurple/protocols/Makefile.mingw Mon Apr 09 22:54:39 2007 +0000 +++ b/libpurple/protocols/Makefile.mingw Tue Apr 10 06:19:29 2007 +0000 @@ -2,11 +2,11 @@ # # Author: hermanator12002@yahoo.com # Date 9/11/02 -# Description: Top Makefile for win32 (mingw) port of Gaim +# Description: Protocols Makefile for win32 (mingw) port of LibPurple # -GAIM_TOP := ../.. -include $(GAIM_TOP)/libpurple/win32/global.mak +PIDGIN_TREE_TOP := ../.. +include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak SUBDIRS = gg irc jabber msn novell oscar qq sametime silc simple yahoo @@ -14,16 +14,16 @@ all: for subdir in $(SUBDIRS); do \ - $(MAKE) -C $$subdir -f $(GAIM_WIN32_MAKEFILE) || exit 1; \ + $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) || exit 1; \ done; install: all for subdir in $(SUBDIRS); do \ - $(MAKE) -C $$subdir -f $(GAIM_WIN32_MAKEFILE) install || exit 1; \ + $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) install || exit 1; \ done; clean: for subdir in $(SUBDIRS); do \ - $(MAKE) -C $$subdir -f $(GAIM_WIN32_MAKEFILE) clean || exit 1; \ + $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) clean || exit 1; \ done;