Mercurial > pidgin
view libgaim/protocols/bonjour/Makefile.mingw @ 14463:7df4ab213577
[gaim-migrate @ 17177]
commit part of 1547648
commit some jabber stuff I did a few days ago and forgot about
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Wed, 06 Sep 2006 03:58:53 +0000 |
parents | 8793fc8f7064 |
children | 12cb76aeb21c |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for win32 (mingw) version of libbonjour # GAIM_TOP := ../../.. include $(GAIM_TOP)/libgaim/win32/global.mak TARGET = libbonjour NEEDED_DLLS = $(HOWL_TOP)/bin/libhowl-1.dll # 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$(BONJOUR_ROOT) \ -I$(GTK_TOP)/include \ -I$(GTK_TOP)/include/glib-2.0 \ -I$(GTK_TOP)/lib/glib-2.0/include \ -I$(HOWL_TOP)/include \ -I$(GAIM_LIB_TOP) \ -I$(GAIM_LIB_TOP)/win32 \ -I$(GAIM_TOP) LIB_PATHS = -L$(GTK_TOP)/lib \ -L$(HOWL_TOP)/lib \ -L$(GAIM_LIB_TOP) ## ## SOURCES, OBJECTS ## C_SRC = bonjour.c \ buddy.c \ dns_sd.c \ jabber.c OBJECTS = $(C_SRC:%.c=%.o) ## ## LIBRARIES ## LIBS = \ -lglib-2.0 \ -lws2_32 \ -lintl \ -lhowl \ -lgaim include $(GAIM_COMMON_RULES) ## ## TARGET DEFINITIONS ## .PHONY: all clean all: $(TARGET).dll install: all $(DLL_INSTALL_DIR) cp $(TARGET).dll $(DLL_INSTALL_DIR) cp $(NEEDED_DLLS) $(GAIM_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)