-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmakefile.am
40 lines (33 loc) · 1.42 KB
/
makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#******************************************************************************
# Copyright (c), Recep Aslantas. *
# *
# MIT License (MIT), http://opensource.org/licenses/MIT *
# Full license can be found in the LICENSE file *
# *
#******************************************************************************
ACLOCAL_AMFLAGS = -I m4
AM_CFLAGS = -Wall \
-std=gnu99 \
-O3 \
-Wstrict-aliasing=2 \
-fstrict-aliasing \
-pedantic
lib_LTLIBRARIES = libxml.la
libxml_la_LDFLAGS = -no-undefined -version-info 0:1:0
xmldir=$(includedir)/xml
xml_HEADERS = include/xml/version.h \
include/xml/common.h \
include/xml/xml.h \
include/xml/util.h \
include/xml/attrib.h \
include/xml/print.h \
include/xml/objmap.h
xml_calldir=$(includedir)/xml/call
xml_call_HEADERS = include/xml/call/xml.h
xml_impldir=$(includedir)/xml/impl
xml_impl_HEADERS = include/xml/impl/impl_mem.h \
include/xml/impl/impl_parse.h \
include/xml/impl/impl_common.h \
include/xml/impl/impl_objmap.h
libxml_la_SOURCES=\
src/xml.c