Mercurial > pidgin.yaz
view libpurple/protocols/yahoo/Makefile.mingw @ 15981:a741ec4dafa0
sf patch #1691784, from William Ehlhardt
"Fixes a build-breaker introduced in SVN r18220."
It compiled fine for me without including time.h, but I guess his os or
distribution might be different. And this change is correct.
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 01 Apr 2007 17:38:16 +0000 |
parents | 0e17470b47c2 |
children | ded8da3de5f8 |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for win32 (mingw) version of libyahoo # GAIM_TOP := ../../.. include $(GAIM_TOP)/libpurple/win32/global.mak TARGET = libyahoo 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 = util.c \ yahoo.c \ yahoochat.c \ yahoo_auth.c \ yahoo_crypt.c \ yahoo_doodle.c \ yahoo_filexfer.c \ yahoo_friend.c \ yahoo_packet.c \ yahoo_picture.c \ yahoo_profile.c \ ycht.c OBJECTS = $(C_SRC:%.c=%.o) ## ## LIBRARIES ## LIBS = \ -lglib-2.0 \ -lws2_32 \ -lintl \ -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)