blob: 120c6d8616b3f69eebdd379d777a1e2026aeddc7 (
plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
## Process this file with automake to produce Makefile.in
# Copyright (C) 2002-2014 Free Software Foundation, Inc.
#
# This file is part of LIBTASN1.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
EXTRA_DIST = windows/asn1-parser/asn1-parser.vcproj \
windows/asn1-parser/config.h windows/libtasn1.ncb \
windows/libtasn1.sln windows/libtasn1.suo \
windows/gnulib/getopt.h windows/gnulib/gnulib.vcproj \
windows/libtasn1/libtasn1.vcproj \
windows/test-parser/test-parser.vcproj \
windows/test-tree/test-tree.vcproj windows/libtasn14win.mk
SUBDIRS = gl lib src tests
if ENABLE_DOC
SUBDIRS += doc examples
endif
ACLOCAL_AMFLAGS = -I m4 -I gl/m4 -I lib/glm4
EXTRA_DIST += cfg.mk maint.mk .clcopying
gnulib-update:
gnulib-tool --add-import --dir=. --lib=libgnu --source-base=lib/gllib --m4-base=lib/glm4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --lgpl=2 --no-conditional-dependencies --libtool --macro-prefix=lgl --no-vc-files
TMPFILE="abi-temp.xml"
abi-check:
@rm -f $(TMPFILE)
@echo "Checking libtasn1 ABI"
@echo "<version>$(VERSION)</version>" >$(TMPFILE)
@echo "<headers>$(srcdir)/lib/libtasn1.h" >>$(TMPFILE)
@echo "$(builddir)/lib/libtasn1.h</headers>" >>$(TMPFILE)
@echo "<libs>$(builddir)/lib/.libs</libs>" >>$(TMPFILE)
test ! -f "$(srcdir)/devel/ABI-$$(uname -m).dump" || \
abi-compliance-checker -abi -lib libtasn1 -old "$(srcdir)/devel/ABI-$$(uname -m).dump" -new $(TMPFILE)
@rm -f $(TMPFILE)
dist-hook: abi-check
make -C doc/ compare-makefile
|