Annotation of embedaddon/libxml2/win32/Makefile.mingw, revision 1.1.1.2

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>