src/Makefile.am

Wed, 18 Oct 2017 14:23:57 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 18 Oct 2017 14:23:57 +0200
changeset 253
e19825a1430a
parent 252
6342cbbd1922
child 256
2c21b42cf11d
permissions
-rw-r--r--

removes unnecessary macros from ucx.h + removes the usage of restrict and _Bool completely, instead of defining macros

     1 lib_LTLIBRARIES = libucx.la
     2 libucx_la_LDFLAGS = -version-info 1:0:0
     3 libucx_la_SOURCES = utils.c
     4 libucx_la_SOURCES += list.c
     5 libucx_la_SOURCES += map.c
     6 libucx_la_SOURCES += avl.c
     7 libucx_la_SOURCES += properties.c
     8 libucx_la_SOURCES += mempool.c
     9 libucx_la_SOURCES += string.c
    10 libucx_la_SOURCES += test.c
    11 libucx_la_SOURCES += allocator.c
    12 libucx_la_SOURCES += logging.c
    13 libucx_la_SOURCES += buffer.c
    14 libucx_la_SOURCES += stack.c
    16 ucxdir = $(includedir)/ucx
    17 ucx_HEADERS = ucx/allocator.h
    18 ucx_HEADERS += ucx/avl.h
    19 ucx_HEADERS += ucx/buffer.h
    20 ucx_HEADERS += ucx/list.h
    21 ucx_HEADERS += ucx/logging.h
    22 ucx_HEADERS += ucx/map.h
    23 ucx_HEADERS += ucx/mempool.h
    24 ucx_HEADERS += ucx/properties.h
    25 ucx_HEADERS += ucx/stack.h
    26 ucx_HEADERS += ucx/string.h
    27 ucx_HEADERS += ucx/test.h
    28 ucx_HEADERS += ucx/ucx.h
    29 ucx_HEADERS += ucx/utils.h

mercurial