xref: /aoo4110/main/libxml2/makefile.mk (revision b1cdbd2c)
1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24PRJ=.
25
26PRJNAME=libxml2
27TARGET=so_libxml2
28
29# --- Settings -----------------------------------------------------
30
31.INCLUDE :	settings.mk
32
33.IF "$(SYSTEM_LIBXML)" == "YES"
34all:
35	@echo "An already available installation of libxml should exist on your system."
36	@echo "Therefore the version provided here does not need to be built in addition."
37.ENDIF
38
39# --- Files --------------------------------------------------------
40
41LIBXML2VERSION=2.9.10
42
43TARFILE_NAME=$(PRJNAME)-$(LIBXML2VERSION)
44TARFILE_MD5=10942a1dc23137a8aa07f0639cbfece5
45
46PATCH_FILES=libxml2-configure.patch \
47	0e1a49c8907645d2e155f0d89d4d9895ac5112b5.patch \
48	50f06b3efb638efb0abd95dc62dca05ae67882c2.patch \
49	7ffcd44d7e6c46704f8af0321d9314cd26e0e18a.patch
50
51# libxml2-global-symbols: #i112480#: Solaris ld won't export non-listed symbols
52#            libxml2-global-symbols.patch
53
54# This is only for UNX environment now
55
56.IF "$(OS)"=="WNT"
57.IF "$(COM)"=="GCC"
58xml2_CC=$(CC) -mthreads
59.IF "$(MINGW_SHARED_GCCLIB)"=="YES"
60xml2_CC+=-shared-libgcc
61.ENDIF
62xml2_LIBS=-lws2_32
63.IF "$(MINGW_SHARED_GXXLIB)"=="YES"
64xml2_LIBS+=$(MINGW_SHARED_LIBSTDCPP)
65.ENDIF
66CONFIGURE_DIR=
67CONFIGURE_ACTION=.$/configure
68CONFIGURE_FLAGS=--enable-ipv6=no --without-python --without-lzma --enable-static=no --without-debug --build=i586-pc-mingw32 --host=i586-pc-mingw32 lt_cv_cc_dll_switch="-shared" CC="$(xml2_CC)" LDFLAGS="-no-undefined -Wl,--enable-runtime-pseudo-reloc-v2 -L$(ILIB:s/;/ -L/)" LIBS="$(xml2_LIBS)" OBJDUMP=objdump
69BUILD_ACTION=$(GNUMAKE)
70BUILD_DIR=$(CONFIGURE_DIR)
71.ELSE
72CONFIGURE_DIR=win32
73CONFIGURE_ACTION=cscript configure.js
74CONFIGURE_FLAGS=iconv=no sax1=yes lzma=no
75.IF "$(debug)"!=""
76CONFIGURE_FLAGS+=debug=yes
77.ENDIF
78BUILD_ACTION=nmake
79BUILD_DIR=$(CONFIGURE_DIR)
80.ENDIF
81.ELSE
82.IF "$(SYSBASE)"!=""
83xml2_CFLAGS+=-I$(SYSBASE)$/usr$/include
84.IF "$(COMNAME)"=="sunpro5"
85xml2_CFLAGS+=$(ARCH_FLAGS) $(C_RESTRICTIONFLAGS)
86.ENDIF			# "$(COMNAME)"=="sunpro5"
87xml2_LDFLAGS+=-L$(SYSBASE)$/usr$/lib
88.ENDIF			# "$(SYSBASE)"!=""
89
90CONFIGURE_DIR=
91.IF "$(OS)"=="OS2"
92CONFIGURE_ACTION=sh .$/configure
93CONFIGURE_FLAGS=--enable-ipv6=no --without-python --without-zlib --without-lzma --enable-static=yes --with-sax1=yes ADDCFLAGS="$(xml2_CFLAGS)" CFLAGS="$(EXTRA_CFLAGS)" LDFLAGS="$(xml2_LDFLAGS) $(EXTRA_LINKFLAGS)"
94.ELSE
95CONFIGURE_ACTION=.$/configure
96CONFIGURE_FLAGS=--enable-ipv6=no --without-python --without-zlib --without-lzma --enable-static=no --with-sax1=yes ADDCFLAGS="$(xml2_CFLAGS) $(EXTRA_CFLAGS)" LDFLAGS="$(xml2_LDFLAGS) $(EXTRA_LINKFLAGS)"
97.ENDIF
98BUILD_ACTION=$(GNUMAKE)
99BUILD_FLAGS+= -j$(EXTMAXPROCESS)
100BUILD_DIR=$(CONFIGURE_DIR)
101.ENDIF
102
103
104OUTDIR2INC=include$/libxml
105
106.IF "$(OS)"=="MACOSX"
107EXTRPATH=URELIB
108OUT2LIB+=.libs$/libxml2.*.dylib
109OUT2BIN+=.libs$/xmllint
110OUT2BIN+=xml2-config
111.ELIF "$(OS)"=="WNT"
112.IF "$(COM)"=="GCC"
113OUT2LIB+=.libs$/libxml2*.a
114OUT2BIN+=.libs$/libxml2*.dll
115OUT2BIN+=.libs$/xmllint.exe
116OUT2BIN+=xml2-config
117.ELSE
118OUT2LIB+=win32$/bin.msvc$/*.lib
119OUT2BIN+=win32$/bin.msvc$/*.dll
120OUT2BIN+=win32$/bin.msvc$/xmllint.exe
121.ENDIF
122.ELSE
123OUT2LIB+=.libs$/libxml2.so*
124OUT2BIN+=.libs$/xmllint
125OUT2BIN+=xml2-config
126.ENDIF
127
128# --- Targets ------------------------------------------------------
129
130.INCLUDE : set_ext.mk
131.INCLUDE : target.mk
132.INCLUDE : tg_ext.mk
133
134