Mercurial > pidgin
view libpurple/protocols/msn/Makefile.mingw @ 15946:e058328dc954
Patch from Zac West which (1) adds a message flag, PURPLE_MESSAGE_NOTIFY, used to indicate that a message is a protocol-level notification from a user ('buzz' in yahoo, 'nudge' in msn, for example) and (2) uses it along with improving the text displayed when sending/receiving buzzes and nudges. The addition of this flag means that a plugin could implement custom behavior, such as playing a sound or triggerring some other event, reliably and easily.
author | Evan Schoenberg <evan.s@dreskin.net> |
---|---|
date | Tue, 27 Mar 2007 03:06:35 +0000 |
parents | 0e17470b47c2 |
children | ded8da3de5f8 |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for win32 (mingw) version of libmsn # GAIM_TOP := ../../.. include $(GAIM_TOP)/libpurple/win32/global.mak TARGET = libmsn TYPE = PLUGIN # Static or Plugin... ifeq ($(TYPE),STATIC) DEFINES += -DSTATIC DLL_INSTALL_DIR = $(GAIM_INSTALL_DIR) else ifeq ($(TYPE),PLUGIN) DLL_INSTALL_DIR = $(GAIM_INSTALL_PLUGINS_DIR) endif endif ## ## INCLUDE PATHS ## INCLUDE_PATHS += -I. \ -I$(GTK_TOP)/include \ -I$(GTK_TOP)/include/glib-2.0 \ -I$(GTK_TOP)/lib/glib-2.0/include \ -I$(GAIM_LIB_TOP) \ -I$(GAIM_LIB_TOP)/win32 \ -I$(GAIM_TOP) LIB_PATHS = -L$(GTK_TOP)/lib \ -L$(GAIM_LIB_TOP) ## ## SOURCES, OBJECTS ## C_SRC = cmdproc.c \ command.c \ dialog.c \ directconn.c \ error.c \ group.c \ history.c \ httpconn.c \ msg.c \ msn.c \ nexus.c \ notification.c \ object.c \ page.c \ servconn.c \ session.c \ slp.c \ slpcall.c \ slplink.c \ slpmsg.c \ slpsession.c \ state.c \ switchboard.c \ sync.c \ table.c \ transaction.c \ user.c \ userlist.c \ msn-utils.c OBJECTS = $(C_SRC:%.c=%.o) ## ## LIBRARIES ## LIBS = \ -lglib-2.0 \ -lintl \ -lws2_32 \ -lpurple include $(GAIM_COMMON_RULES) ## ## TARGET DEFINITIONS ## .PHONY: all install clean all: $(TARGET).dll install: all $(DLL_INSTALL_DIR) cp $(TARGET).dll $(DLL_INSTALL_DIR) $(OBJECTS): $(GAIM_CONFIG_H) $(TARGET).dll: $(GAIM_LIBGAIM_DLL).a $(OBJECTS) $(CC) -shared $(OBJECTS) $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -o $(TARGET).dll ## ## CLEAN RULES ## clean: rm -f $(OBJECTS) rm -f $(TARGET).dll include $(GAIM_COMMON_TARGETS)