remove -Werror from automake
[platform/upstream/libtasn1.git] / lib / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 # Copyright (C) 2002-2014 Free Software Foundation, Inc.
3 #
4 # This file is part of LIBTASN1.
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 SUBDIRS = gllib
20
21 AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAG_VISIBILITY)
22 AM_CPPFLAGS = -I$(srcdir)/gllib -DASN1_BUILDING
23
24 include_HEADERS = libtasn1.h
25
26 pkgconfigdir = $(libdir)/pkgconfig
27 pkgconfig_DATA = libtasn1.pc
28
29 lib_LTLIBRARIES = libtasn1.la
30
31 libtasn1_la_SOURCES =   \
32         ASN1.y          \
33         coding.c        \
34         decoding.c      \
35         element.c       \
36         element.h       \
37         errors.c        \
38         gstr.c          \
39         gstr.h          \
40         int.h           \
41         libtasn1.h      \
42         libtasn1.map    \
43         parser_aux.c    \
44         parser_aux.h    \
45         structure.c     \
46         structure.h     \
47         version.c
48
49 libtasn1_la_LIBADD = gllib/libgnu.la
50
51 libtasn1_la_LDFLAGS = \
52         -no-undefined \
53         -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
54
55 if HAVE_LD_VERSION_SCRIPT
56 libtasn1_la_LDFLAGS += -Wl,--version-script=$(srcdir)/libtasn1.map
57 else
58 libtasn1_la_LDFLAGS += -export-symbols-regex '^(asn1|libtasn1_).*'
59 endif