1# Makefile for libxml2, specific for Windows, GCC (mingw) and GNU make. 2# 3# Take a look at the beginning and modify the variables to suit your 4# environment. Having done that, you can do a 5# 6# nmake [all] to build the libxml and the accompanying utilities. 7# nmake clean to remove all compiler output files and return to a 8# clean state. 9# nmake rebuild to rebuild everything from scratch. This basically does 10# a 'nmake clean' and then a 'nmake all'. 11# nmake install to install the library and its header files. 12# 13# November 2002, Igor Zlatkovic <igor@zlatkovic.com> 14 15# There should never be a need to modify anything below this line. 16# ---------------------------------------------------------------- 17 18AUTOCONF = .\config.mingw 19include $(AUTOCONF) 20 21# Names of various input and output components. 22XML_NAME = xml2 23XML_BASENAME = lib$(XML_NAME) 24XML_SO = $(XML_BASENAME).dll 25XML_IMP = $(XML_BASENAME).lib 26XML_A = $(XML_BASENAME).a 27 28# Place where we let the compiler put its output. 29BINDIR = bin.mingw 30XML_INTDIR = int.mingw 31XML_INTDIR_A = int.a.mingw 32UTILS_INTDIR = int.utils.mingw 33 34# The preprocessor and its options. 35CPP = gcc.exe -E 36CPPFLAGS += -I$(XML_SRCDIR)/include -DNOLIBTOOL 37ifeq ($(WITH_THREADS),1) 38CPPFLAGS += -D_REENTRANT 39endif 40 41# The compiler and its options. 42CC = gcc.exe 43CFLAGS += -DWIN32 -D_WINDOWS -D_MBCS -DNOLIBTOOL 44CFLAGS += -I$(XML_SRCDIR) -I$(XML_SRCDIR)/include -I$(INCPREFIX) $(INCLUDE) 45ifneq ($(WITH_THREADS),no) 46CFLAGS += -D_REENTRANT 47endif 48ifeq ($(WITH_THREADS),yes) 49CFLAGS += -DHAVE_WIN32_THREADS -DHAVE_COMPILER_TLS 50endif 51ifeq ($(WITH_THREADS),ctls) 52CFLAGS += -DHAVE_WIN32_THREADS -DHAVE_COMPILER_TLS 53endif 54ifeq ($(WITH_THREADS),native) 55CFLAGS += -DHAVE_WIN32_THREADS 56endif 57ifeq ($(WITH_THREADS),posix) 58CFLAGS += -DHAVE_PTHREAD_H 59endif 60ifeq ($(WITH_ZLIB),1) 61CFLAGS += -DHAVE_ZLIB_H 62endif 63ifeq ($(WITH_LZMA),1) 64CFLAGS += -DHAVE_LZMA_H 65endif 66 67# The linker and its options. 68LD = gcc.exe 69LDFLAGS += -Wl,--major-image-version,$(LIBXML_MAJOR_VERSION) 70LDFLAGS += -Wl,--minor-image-version,$(LIBXML_MINOR_VERSION) 71LDFLAGS += -Wl,-L,$(BINDIR) -Wl,-L,$(LIBPREFIX) 72LIBS = 73ifeq ($(WITH_FTP),1) 74CFLAGS += -D_WINSOCKAPI_ 75LIBS += -lwsock32 -lws2_32 76endif 77ifeq ($(WITH_HTTP),1) 78CFLAGS += -D_WINSOCKAPI_ 79LIBS += -lwsock32 -lws2_32 80endif 81ifeq ($(WITH_ICONV),1) 82LIBS += -liconv 83endif 84ifeq ($(WITH_ZLIB),1) 85# Could be named differently 86# LIBS += -lzdll 87LIBS += -lz 88endif 89ifeq ($(WITH_LZMA),1) 90LIBS += -llzma 91endif 92ifeq ($(WITH_THREADS),posix) 93LIBS += -lpthreadGC 94endif 95ifeq ($(WITH_MODULES),1) 96LIBS += -lkernel32 97endif 98 99LIBS += $(LIB) 100 101# The archiver and its options. 102AR = ar.exe 103ARFLAGS = -r 104 105# Optimisation and debug symbols. 106ifeq ($(DEBUG),1) 107CFLAGS += -D_DEBUG -g 108LDFLAGS += 109else 110CFLAGS += -DNDEBUG -O2 111LDFLAGS += 112endif 113 114 115# Libxml object files. 116XML_OBJS = $(XML_INTDIR)/buf.o\ 117 $(XML_INTDIR)/c14n.o\ 118 $(XML_INTDIR)/catalog.o\ 119 $(XML_INTDIR)/chvalid.o\ 120 $(XML_INTDIR)/debugXML.o\ 121 $(XML_INTDIR)/dict.o\ 122 $(XML_INTDIR)/DOCBparser.o\ 123 $(XML_INTDIR)/encoding.o\ 124 $(XML_INTDIR)/entities.o\ 125 $(XML_INTDIR)/error.o\ 126 $(XML_INTDIR)/globals.o\ 127 $(XML_INTDIR)/hash.o\ 128 $(XML_INTDIR)/HTMLparser.o\ 129 $(XML_INTDIR)/HTMLtree.o\ 130 $(XML_INTDIR)/legacy.o\ 131 $(XML_INTDIR)/list.o\ 132 $(XML_INTDIR)/nanoftp.o\ 133 $(XML_INTDIR)/nanohttp.o\ 134 $(XML_INTDIR)/parser.o\ 135 $(XML_INTDIR)/parserInternals.o\ 136 $(XML_INTDIR)/pattern.o\ 137 $(XML_INTDIR)/relaxng.o\ 138 $(XML_INTDIR)/SAX.o\ 139 $(XML_INTDIR)/SAX2.o\ 140 $(XML_INTDIR)/schematron.o\ 141 $(XML_INTDIR)/threads.o\ 142 $(XML_INTDIR)/tree.o\ 143 $(XML_INTDIR)/uri.o\ 144 $(XML_INTDIR)/valid.o\ 145 $(XML_INTDIR)/xinclude.o\ 146 $(XML_INTDIR)/xlink.o\ 147 $(XML_INTDIR)/xmlIO.o\ 148 $(XML_INTDIR)/xmlmemory.o\ 149 $(XML_INTDIR)/xmlreader.o\ 150 $(XML_INTDIR)/xmlregexp.o\ 151 $(XML_INTDIR)/xmlmodule.o\ 152 $(XML_INTDIR)/xmlsave.o\ 153 $(XML_INTDIR)/xmlschemas.o\ 154 $(XML_INTDIR)/xmlschemastypes.o\ 155 $(XML_INTDIR)/xmlunicode.o\ 156 $(XML_INTDIR)/xmlwriter.o\ 157 $(XML_INTDIR)/xpath.o\ 158 $(XML_INTDIR)/xpointer.o\ 159 $(XML_INTDIR)/xmlstring.o 160 161XML_SRCS = $(subst .o,.c,$(subst $(XML_INTDIR)/,$(XML_SRCDIR)/,$(XML_OBJS))) 162 163# Static libxml object files. 164XML_OBJS_A = $(XML_INTDIR_A)/buf.o\ 165 $(XML_INTDIR_A)/c14n.o\ 166 $(XML_INTDIR_A)/catalog.o\ 167 $(XML_INTDIR_A)/chvalid.o\ 168 $(XML_INTDIR_A)/debugXML.o\ 169 $(XML_INTDIR_A)/dict.o\ 170 $(XML_INTDIR_A)/DOCBparser.o\ 171 $(XML_INTDIR_A)/encoding.o\ 172 $(XML_INTDIR_A)/entities.o\ 173 $(XML_INTDIR_A)/error.o\ 174 $(XML_INTDIR_A)/globals.o\ 175 $(XML_INTDIR_A)/hash.o\ 176 $(XML_INTDIR_A)/HTMLparser.o\ 177 $(XML_INTDIR_A)/HTMLtree.o\ 178 $(XML_INTDIR_A)/legacy.o\ 179 $(XML_INTDIR_A)/list.o\ 180 $(XML_INTDIR_A)/nanoftp.o\ 181 $(XML_INTDIR_A)/nanohttp.o\ 182 $(XML_INTDIR_A)/parser.o\ 183 $(XML_INTDIR_A)/parserInternals.o\ 184 $(XML_INTDIR_A)/pattern.o\ 185 $(XML_INTDIR_A)/relaxng.o\ 186 $(XML_INTDIR_A)/SAX.o\ 187 $(XML_INTDIR_A)/SAX2.o\ 188 $(XML_INTDIR_A)/schematron.o\ 189 $(XML_INTDIR_A)/threads.o\ 190 $(XML_INTDIR_A)/tree.o\ 191 $(XML_INTDIR_A)/uri.o\ 192 $(XML_INTDIR_A)/valid.o\ 193 $(XML_INTDIR_A)/xinclude.o\ 194 $(XML_INTDIR_A)/xlink.o\ 195 $(XML_INTDIR_A)/xmlIO.o\ 196 $(XML_INTDIR_A)/xmlmemory.o\ 197 $(XML_INTDIR_A)/xmlreader.o\ 198 $(XML_INTDIR_A)/xmlregexp.o\ 199 $(XML_INTDIR_A)/xmlmodule.o\ 200 $(XML_INTDIR_A)/xmlsave.o\ 201 $(XML_INTDIR_A)/xmlschemas.o\ 202 $(XML_INTDIR_A)/xmlschemastypes.o\ 203 $(XML_INTDIR_A)/xmlunicode.o\ 204 $(XML_INTDIR_A)/xmlwriter.o\ 205 $(XML_INTDIR_A)/xpath.o\ 206 $(XML_INTDIR_A)/xpointer.o\ 207 $(XML_INTDIR_A)/xmlstring.o 208 209XML_SRCS_A = $(subst .o,.c,$(subst $(XML_INTDIR_A)/,$(XML_SRCDIR)/,$(XML_OBJS_A))) 210 211# Xmllint and friends executables. 212UTILS = $(BINDIR)/xmllint.exe\ 213 $(BINDIR)/xmlcatalog.exe\ 214 $(BINDIR)/testAutomata.exe\ 215 $(BINDIR)/testC14N.exe\ 216 $(BINDIR)/testDocbook.exe\ 217 $(BINDIR)/testHTML.exe\ 218 $(BINDIR)/testReader.exe\ 219 $(BINDIR)/testRegexp.exe\ 220 $(BINDIR)/testModule.exe\ 221 $(BINDIR)/testRelax.exe\ 222 $(BINDIR)/testSAX.exe\ 223 $(BINDIR)/testSchemas.exe\ 224 $(BINDIR)/testURI.exe\ 225 $(BINDIR)/testXPath.exe\ 226 $(BINDIR)/runtest.exe\ 227 $(BINDIR)/runsuite.exe\ 228 $(BINDIR)/testapi.exe\ 229 $(BINDIR)/testlimits.exe 230 231ifeq ($(WITH_THREADS),yes) 232UTILS += $(BINDIR)/testThreadsWin32.exe 233endif 234ifeq ($(WITH_THREADS),ctls) 235UTILS += $(BINDIR)/testThreadsWin32.exe 236endif 237ifeq ($(WITH_THREADS),native) 238UTILS += $(BINDIR)/testThreadsWin32.exe 239endif 240ifeq ($(WITH_THREADS),posix) 241UTILS += $(BINDIR)/testThreads.exe 242endif 243 244all : dep libxml libxmla utils 245 246libxml : $(BINDIR)/$(XML_SO) 247 248libxmla : $(BINDIR)/$(XML_A) 249 250utils : $(UTILS) 251 252clean : 253 cmd.exe /C "if exist $(XML_INTDIR) rmdir /S /Q $(XML_INTDIR)" 254 cmd.exe /C "if exist $(XML_INTDIR_A) rmdir /S /Q $(XML_INTDIR_A)" 255 cmd.exe /C "if exist $(UTILS_INTDIR) rmdir /S /Q $(UTILS_INTDIR)" 256 cmd.exe /C "if exist $(BINDIR) rmdir /S /Q $(BINDIR)" 257 cmd.exe /C "if exist depends.mingw del depends.mingw" 258 259distclean : clean 260 cmd.exe /C "if exist config.* del config.*" 261 cmd.exe /C "if exist Makefile del Makefile" 262 263rebuild : clean all 264 265install-libs : all 266 cmd.exe /C "if not exist $(INCPREFIX)\libxml2 mkdir $(INCPREFIX)\libxml2" 267 cmd.exe /C "if not exist $(INCPREFIX)\libxml2\libxml mkdir $(INCPREFIX)\libxml2\libxml" 268 cmd.exe /C "if not exist $(BINPREFIX) mkdir $(BINPREFIX)" 269 cmd.exe /C "if not exist $(LIBPREFIX) mkdir $(LIBPREFIX)" 270 cmd.exe /C "copy $(XML_SRCDIR)\include\libxml\*.h $(INCPREFIX)\libxml2\libxml" 271 cmd.exe /C "copy $(BINDIR)\$(XML_SO) $(SOPREFIX)" 272 cmd.exe /C "copy $(BINDIR)\$(XML_A) $(LIBPREFIX)" 273 cmd.exe /C "copy $(BINDIR)\$(XML_IMP) $(LIBPREFIX)" 274 cmd.exe /C "copy $(BINDIR)\xml*.exe $(BINPREFIX)" 275 276install : install-libs 277 cmd.exe /C "copy $(BINDIR)\*.exe $(BINPREFIX)" 278 279install-dist : install-libs 280 cmd.exe /C "copy $(BINDIR)\xml*.exe $(BINPREFIX)" 281 282# This is a target for me, to make a binary distribution. Not for the public use, 283# keep your hands off :-) 284BDVERSION = $(LIBXML_MAJOR_VERSION).$(LIBXML_MINOR_VERSION).$(LIBXML_MICRO_VERSION) 285BDPREFIX = $(XML_BASENAME)-$(BDVERSION).win32 286bindist : all 287 $(MAKE) PREFIX=$(BDPREFIX) SOPREFIX=$(BDPREFIX)/bin install-dist 288 cscript //NoLogo configure.js genreadme $(XML_BASENAME) $(BDVERSION) $(BDPREFIX)\readme.txt 289 290 291# Creates the dependency file 292dep : 293 $(CC) $(CFLAGS) -M $(XML_SRCS) > depends.mingw 294 295 296# Makes the output directory. 297$(BINDIR) : 298 cmd.exe /C if not exist $(BINDIR) mkdir $(BINDIR) 299 300 301# Makes the libxml intermediate directory. 302$(XML_INTDIR) : 303 cmd.exe /C if not exist $(XML_INTDIR) mkdir $(XML_INTDIR) 304 305# Makes the static libxml intermediate directory. 306$(XML_INTDIR_A) : 307 cmd.exe /C if not exist $(XML_INTDIR_A) mkdir $(XML_INTDIR_A) 308 309# An implicit rule for libxml compilation. 310$(XML_INTDIR)/%.o : $(XML_SRCDIR)/%.c 311 $(CC) $(CFLAGS) -o $@ -c $< 312 313# An implicit rule for static libxml compilation. 314$(XML_INTDIR_A)/%.o : $(XML_SRCDIR)/%.c 315 $(CC) $(CFLAGS) -DLIBXML_STATIC -o $@ -c $< 316 317 318# Compiles libxml source. Uses the implicit rule for commands. 319$(XML_OBJS) : $(XML_INTDIR) 320 321# Compiles static libxml source. Uses the implicit rule for commands. 322$(XML_OBJS_A) : $(XML_INTDIR_A) 323 324# Creates the libxml shared object. 325XMLSO_LDFLAGS = $(LDFLAGS) -shared -Wl,--dll -Wl,--out-implib,$(BINDIR)/$(XML_IMP) 326$(BINDIR)/$(XML_SO) : $(BINDIR) $(XML_OBJS) 327 $(LD) $(XMLSO_LDFLAGS) -o $(BINDIR)/$(XML_SO) $(XML_OBJS) $(LIBS) 328 329# Creates the libxml archive. 330$(BINDIR)/$(XML_A) : $(BINDIR) $(XML_OBJS_A) 331 $(AR) $(ARFLAGS) $(BINDIR)\$(XML_A) $(XML_OBJS_A) 332 333 334# Makes the utils intermediate directory. 335$(UTILS_INTDIR) : 336 cmd.exe /C if not exist $(UTILS_INTDIR) mkdir $(UTILS_INTDIR) 337 338# An implicit rule for xmllint and friends. 339ifeq ($(STATIC),1) 340$(BINDIR)/%.exe : $(UTILS_SRCDIR)/%.c 341 $(CC) -DLIBXML_STATIC $(CFLAGS) -o $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -c $< 342 $(LD) $(LDFLAGS) -o $@ $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -l$(XML_BASENAME) $(LIBS) 343else 344$(BINDIR)/%.exe : $(UTILS_SRCDIR)/%.c 345 $(CC) $(CFLAGS) -o $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -c $< 346 $(LD) $(LDFLAGS) -o $@ $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -l$(XML_BASENAME) $(LIBS) 347endif 348 349# Builds xmllint and friends. Uses the implicit rule for commands. 350$(UTILS) : $(UTILS_INTDIR) $(BINDIR) libxml libxmla 351 352# Source dependencies 353#-include depends.mingw 354 355