Mercurial > pidgin.yaz
view libgaim/protocols/jabber/Makefile.mingw @ 14526:9df42423eea8
[gaim-migrate @ 17247]
Tell configure to disable the installation of the gconf schema. Add a %post section that calls gconftool-2 to do the real installation.
This is entirely untested, but is documented as The Right Way at:
http://www.gnome.org/projects/gconf/
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 11 Sep 2006 07:01:15 +0000 |
parents | 8793fc8f7064 |
children | 12cb76aeb21c |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for win32 (mingw) version of libjabber # GAIM_TOP := ../../.. include $(GAIM_TOP)/libgaim/win32/global.mak TARGET = libjabber # 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./win32 \ -I$(GTK_TOP)/include \ -I$(GTK_TOP)/include/glib-2.0 \ -I$(GTK_TOP)/lib/glib-2.0/include \ -I$(LIBXML2_TOP)/include \ -I$(GAIM_LIB_TOP) \ -I$(GAIM_LIB_TOP)/win32 \ -I$(GAIM_TOP) LIB_PATHS = -L$(GTK_TOP)/lib \ -L$(LIBXML2_TOP)/lib \ -L$(GAIM_LIB_TOP) ## ## SOURCES, OBJECTS ## C_SRC = auth.c \ buddy.c \ chat.c \ disco.c \ iq.c \ jabber.c \ jutil.c \ message.c \ oob.c \ parser.c \ presence.c \ roster.c \ si.c \ xdata.c \ win32/posix.uname.c OBJECTS = $(C_SRC:%.c=%.o) ## ## LIBRARIES ## LIBS = \ -lglib-2.0 \ -lxml2 \ -lws2_32 \ -lintl \ -lgaim include $(GAIM_COMMON_RULES) ## ## TARGET DEFINITIONS ## .PHONY: all 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 -rf $(OBJECTS) rm -rf $(TARGET).dll include $(GAIM_COMMON_TARGETS)