Mercurial > pidgin.yaz
view libgaim/plugins/perl/Makefile.mingw @ 14427:1e00e8245720
[gaim-migrate @ 17137]
Patch from wabz (Richard Nelson) to show 'Last Seen' for offline buddies.
I have also added a fix to show offline buddies in the tooltip for a contact
if 'show offline buddies' is turned on.
committer: Tailor Script <tailor@pidgin.im>
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sun, 03 Sep 2006 08:01:12 +0000 |
parents | a4542693481d |
children | e88aae4f4c40 |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for perl plugin loader plugin. # GAIM_TOP := ../../.. include $(GAIM_TOP)/libgaim/win32/global.mak TARGET = perl # Perl headers with /* /* */ type comments.. Turn off warnings. CFLAGS += -Wno-comment ## ## INCLUDE PATHS ## INCLUDE_PATHS += -I. \ -I$(GAIM_TOP) \ -I$(GAIM_LIB_TOP) \ -I$(GAIM_LIB_TOP)/win32 \ -I$(GTK_TOP)/include \ -I$(GTK_TOP)/include/glib-2.0 \ -I$(GTK_TOP)/lib/glib-2.0/include \ -I$(PERL_LIB_TOP)/CORE LIB_PATHS = -L$(GTK_TOP)/lib \ -L$(GAIM_LIB_TOP) \ -L$(PERL_LIB_TOP) ## ## SOURCES, OBJECTS ## C_SRC = perl.c \ perl-common.c \ perl-handlers.c OBJECTS = $(C_SRC:%.c=%.o) ## ## LIBRARIES ## LIBS = \ -lglib-2.0 \ -lgmodule-2.0 \ -lgobject-2.0 \ -lws2_32 \ -lintl \ -lgaim \ -lperl58 include $(GAIM_COMMON_RULES) ## ## TARGET DEFINITIONS ## .PHONY: all clean all: $(TARGET).dll $(MAKE) -C ./common -f $(GAIM_WIN32_MAKEFILE) install: all $(GAIM_INSTALL_PLUGINS_DIR) cp $(TARGET).dll $(GAIM_INSTALL_PLUGINS_DIR) $(MAKE) -C ./common -f $(GAIM_WIN32_MAKEFILE) install $(OBJECTS): $(GAIM_CONFIG_H) ## ## BUILD DLL ## $(TARGET).dll: $(GAIM_LIBGAIM_DLL).a $(OBJECTS) $(CC) -shared $(OBJECTS) $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -Wl,--export-all-symbols -o $(TARGET).dll ## ## CLEAN RULES ## clean: rm -rf $(OBJECTS) rm -rf $(TARGET).dll $(MAKE) -C ./common -f $(GAIM_WIN32_MAKEFILE) clean include $(GAIM_COMMON_TARGETS)