src/Makefile.am

Mon, 14 May 2018 17:58:06 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 14 May 2018 17:58:06 +0200
branch
constsstr
changeset 307
e2b2b9a5b5ea
parent 270
3d80d425543b
child 283
c3b6ff227481
permissions
-rw-r--r--

closes constsstr branch

256
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
1 #
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
2 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
3 #
259
2f5dea574a75 modules documentation
Mike Becker <universe@uap-core.de>
parents: 256
diff changeset
4 # Copyright 2017 Mike Becker, Olaf Wintermann All rights reserved.
256
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
5 #
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
6 # Redistribution and use in source and binary forms, with or without
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
7 # modification, are permitted provided that the following conditions are met:
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
8 #
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
9 # 1. Redistributions of source code must retain the above copyright
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
10 # notice, this list of conditions and the following disclaimer.
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
11 #
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
12 # 2. Redistributions in binary form must reproduce the above copyright
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
13 # notice, this list of conditions and the following disclaimer in the
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
14 # documentation and/or other materials provided with the distribution.
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
15 #
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
17 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
18 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
19 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
20 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
21 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
22 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
23 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
24 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
25 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
26 # POSSIBILITY OF SUCH DAMAGE.
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
27 #
2c21b42cf11d documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents: 253
diff changeset
28
252
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
29 lib_LTLIBRARIES = libucx.la
253
e19825a1430a removes unnecessary macros from ucx.h + removes the usage of restrict and _Bool completely, instead of defining macros
Mike Becker <universe@uap-core.de>
parents: 252
diff changeset
30 libucx_la_LDFLAGS = -version-info 1:0:0
252
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
31 libucx_la_SOURCES = utils.c
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
32 libucx_la_SOURCES += list.c
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
33 libucx_la_SOURCES += map.c
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
34 libucx_la_SOURCES += avl.c
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
35 libucx_la_SOURCES += properties.c
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
36 libucx_la_SOURCES += mempool.c
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
37 libucx_la_SOURCES += string.c
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
38 libucx_la_SOURCES += test.c
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
39 libucx_la_SOURCES += allocator.c
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
40 libucx_la_SOURCES += logging.c
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
41 libucx_la_SOURCES += buffer.c
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
42 libucx_la_SOURCES += stack.c
270
3d80d425543b adds integer overflow checks
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 259
diff changeset
43 libucx_la_SOURCES += ucx.c
252
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
44
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
45 ucxdir = $(includedir)/ucx
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
46 ucx_HEADERS = ucx/allocator.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
47 ucx_HEADERS += ucx/avl.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
48 ucx_HEADERS += ucx/buffer.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
49 ucx_HEADERS += ucx/list.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
50 ucx_HEADERS += ucx/logging.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
51 ucx_HEADERS += ucx/map.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
52 ucx_HEADERS += ucx/mempool.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
53 ucx_HEADERS += ucx/properties.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
54 ucx_HEADERS += ucx/stack.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
55 ucx_HEADERS += ucx/string.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
56 ucx_HEADERS += ucx/test.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
57 ucx_HEADERS += ucx/ucx.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
58 ucx_HEADERS += ucx/utils.h
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
59
6342cbbd1922 removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff changeset
60

mercurial