l10n: change translation URLs to transifex.com
[siplcs.git] / src / core / Makefile.mingw
blobedff920a4e478b1c8a621e49b9e9e479c282ce56
1 ################################### tell Emacs this is a -*- makefile-gmake -*-
3 # Copyright (C) 2011-2013 SIPE Project <http://sipe.sourceforge.net/>
5 # Makefile.mingw
7 # Author: zup@sbox.tugraz.at
8 # Date 8/28/07
9 # Description: Makefile for win32 (mingw) version of libsipe
11 ###############################################################################
13 # Configuration option:
14 #  - USE_SSPI defined:     NTLM, Kerberos, TLS-DSK & Single Sign-On supported
15 #  - USE_SSPI not defined: NTLM & TLS-DSK but without Single Sign-On support
16 #             [eg.: make -f Makefile.mingw USE_SSPI= ]
18 # @TODO: HAVE_LIBKRB5 support for USE_SSPI=. Where to find the libraries?
19 #        Those would need to be packaged alongside the plugin.
21 USE_SSPI := 1
23 ifdef PIDGIN_TREE_TOP
24 # standalone MinGW build
25 OLD_PIDGIN_TREE_TOP := $(PIDGIN_TREE_TOP)
26 PIDGIN_TREE_TOP     := ../$(OLD_PIDGIN_TREE_TOP)
27 else
28 # MinGW cross-compile build (see contrib/mingw-cross-compile/README.txt)
29 PIDGIN_TREE_TOP := ../../..
30 VERSION         := $(shell cat ../../VERSION)
31 endif
33 include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak
35 TARGET = libsipe
37 DLL_INSTALL_DIR = $(PURPLE_INSTALL_PLUGINS_DIR)
39 # dump higher level defines
40 DEFINES  =
41 DEFINES += -DENABLE_NLS=1
42 DEFINES += -DPACKAGE_BUGREPORT=\"https://sourceforge.net/p/sipe/bugs/\"
43 DEFINES += -DPACKAGE_NAME=\"pidgin-sipe\"
44 DEFINES += -DPACKAGE_URL=\"http://sipe.sourceforge.net/\"
45 DEFINES += -DPACKAGE_VERSION=\"$(VERSION)\"
46 DEFINES += -DSIPE_TRANSLATIONS_URL=\"https://www.transifex.com/projects/p/pidgin-sipe/r/mob/\"
47 #DEFINES += -DENABLE_OCS2005_MESSAGE_HACK=1
49 ifdef USE_SSPI
50 DEFINES += -DHAVE_SSPI=1
51 endif
54 ## INCLUDE PATHS
56 INCLUDE_PATHS +=        -I. \
57                         -I../api \
58                         -I../purple \
59                         -I$(GTK_TOP)/include \
60                         -I$(GTK_TOP)/include/glib-2.0 \
61                         -I$(GTK_TOP)/lib/glib-2.0/include \
62                         -I$(LIBXML2_TOP)/include/libxml2 \
63                         -I$(NSPR_TOP)/include \
64                         -I$(NSS_TOP)/include
66 PURPLE_INCLUDE_PATHS += -I$(PURPLE_TOP) \
67                         -I$(PURPLE_TOP)/win32 \
68                         -I$(PIDGIN_TREE_TOP)
71 ##  SOURCES, OBJECTS
73 CLEAN_C_SRC =           sip-soap.c \
74                         sip-transport.c \
75                         sipe-conf.c \
76                         sipe-core.c \
77                         sipe-domino.c \
78                         sipe-buddy.c \
79                         sipe-cal.c \
80                         sipe-certificate.c \
81                         sipe-cert-crypto-nss.c \
82                         sipe-chat.c \
83                         sipe-crypt-nss.c \
84                         sipe-dialog.c \
85                         sipe-digest-nss.c \
86                         sipe-ft.c \
87                         sipe-ft-tftp.c \
88                         sipe-group.c \
89                         sipe-groupchat.c \
90                         sipe-http.c \
91                         sipe-http-request.c \
92                         sipe-http-transport.c \
93                         sipe-im.c \
94                         sipe-incoming.c \
95                         sipe-notify.c \
96                         sipe-ocs2005.c \
97                         sipe-ocs2007.c \
98                         sipe-schedule.c \
99                         sipe-session.c \
100                         sipe-status.c \
101                         sipe-subscriptions.c \
102                         sipe-svc.c \
103                         sipe-tls.c \
104                         sipe-user.c \
105                         sipe-utils.c \
106                         sipe-ews.c \
107                         sipmsg.c \
108                         sipe-sign.c \
109                         sip-sec.c \
110                         sip-sec-digest.c \
111                         sip-sec-tls-dsk.c \
112                         sip-csta.c \
113                         sipe-webticket.c \
114                         sipe-xml.c \
115                         uuid.c \
116                         sipe-win32dep.c
118 PURPLE_C_SRC =          ../purple/purple-buddy.c \
119                         ../purple/purple-chat.c \
120                         ../purple/purple-connection.c \
121                         ../purple/purple-debug.c \
122                         ../purple/purple-dnsquery.c \
123                         ../purple/purple-ft.c \
124                         ../purple/purple-groupchat.c \
125                         ../purple/purple-im.c \
126                         ../purple/purple-markup.c \
127                         ../purple/purple-mime.c \
128                         ../purple/purple-network.c \
129                         ../purple/purple-notify.c \
130                         ../purple/purple-plugin.c \
131                         ../purple/purple-schedule.c \
132                         ../purple/purple-search.c \
133                         ../purple/purple-setting.c \
134                         ../purple/purple-status.c \
135                         ../purple/purple-transport.c \
136                         ../purple/purple-user.c
138 C_TEST_SRC =            sipe-xml-tests.c
140 ifdef USE_SSPI
141 CLEAN_C_SRC +=          sip-sec-sspi.c
142 else
143 CLEAN_C_SRC +=          md4.c \
144                         sip-sec-ntlm.c
146 C_TEST_SRC +=           sip-sec-ntlm-tests.c \
147                         ../purple/tests.c
148 endif
150 C_SRC =                 $(CLEAN_C_SRC) $(PURPLE_C_SRC)
152 CLEAN_OBJECTS =         $(CLEAN_C_SRC:%.c=%.o)
153 PURPLE_OBJECTS =        $(PURPLE_C_SRC:%.c=%.o)
154 OBJECTS =               $(CLEAN_OBJECTS) $(PURPLE_OBJECTS)
156 # Only these modules need the purple headers
157 $(PURPLE_OBJECTS):      INCLUDE_PATHS += $(PURPLE_INCLUDE_PATHS)
159 TEST_OBJECTS =          $(C_TEST_SRC:%.c=%.o)
162 ## LIBRARIES
164 LIB_PATHS =             -L$(GTK_TOP)/lib \
165                         -L$(LIBXML2_TOP)/lib \
166                         -L$(NSS_TOP)/lib \
167                         -L$(PURPLE_TOP)
169 LIBS =                  -lglib-2.0 \
170                         -lgobject-2.0 \
171                         -lintl \
172                         -lxml2 \
173                         -lnss3 \
174                         -lsmime3 \
175                         -lnspr4 \
176                         -lws2_32 \
177                         -lpurple
179 ifdef USE_SSPI
180 LIBS +=                 -lsecur32
181 endif
183 # These flags are used in mingw build
184 TESTS_WARN = -Werror -Wall -Wextra -Waggregate-return -Wcast-align -Winit-self -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wundef
186 include $(PIDGIN_COMMON_RULES)
189 ## TARGET DEFINITIONS
191 .PHONY: all clean install
193 all: $(TARGET).dll
195 $(OBJECTS): $(PURPLE_CONFIG_H)
197 $(TARGET).dll: $(PURPLE_DLL).a $(OBJECTS)
198         $(CC) -shared $(OBJECTS) $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -o $(TARGET).dll
201 ## CLEAN RULES
203 clean: tests-clean
204         rm -f $(OBJECTS)
205         rm -f $(TARGET).dll
207 rmbak:
208         rm -f *~
210 install:
211         test -z "$(DLL_INSTALL_DIR)" || mkdir -p "$(DLL_INSTALL_DIR)"
212         /usr/bin/install -c $(TARGET).dll '$(DLL_INSTALL_DIR)'
214 $(TEST_OBJECTS):
216 tests: tests-clean $(TEST_OBJECTS)
217         $(CC) sipe-utils.o uuid.o sipe-xml.o sipe-xml-tests.o -L. $(LIB_PATHS) $(LIBS) -lsipe -o sipe-xml-tests.exe
218         ./sipe-xml-tests.exe
219 ifdef USE_SSPI
220 # nothing to do
221 else
222         $(CC) ../purple/purple-debug.o ../purple/purple-markup.o ../purple/purple-network.o md4.o sipe-digest.o sipe-crypt.o sipe-mime.o sipe-sign.o sipmsg.o sipe-utils.o uuid.o sip-sec-ntlm-tests.o ../purple/tests.o  -L. $(LIB_PATHS) $(LIBS) -lsipe -o ../purple/tests.exe
223         ../purple/tests.exe
224 endif
226 tests-clean:
227         rm -f $(TEST_OBJECTS)
228         rm -f sipe-xml-tests.exe ../purple/tests.exe
230 include $(PIDGIN_COMMON_TARGETS)