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

lib_LTLIBRARIES = libucx.la
libucx_la_LDFLAGS = -version-info 1:0:0
libucx_la_SOURCES = utils.c
libucx_la_SOURCES += list.c
libucx_la_SOURCES += map.c
libucx_la_SOURCES += avl.c
libucx_la_SOURCES += properties.c
libucx_la_SOURCES += mempool.c
libucx_la_SOURCES += string.c
libucx_la_SOURCES += test.c
libucx_la_SOURCES += allocator.c
libucx_la_SOURCES += logging.c
libucx_la_SOURCES += buffer.c
libucx_la_SOURCES += stack.c

ucxdir = $(includedir)/ucx
ucx_HEADERS = ucx/allocator.h
ucx_HEADERS += ucx/avl.h
ucx_HEADERS += ucx/buffer.h
ucx_HEADERS += ucx/list.h
ucx_HEADERS += ucx/logging.h
ucx_HEADERS += ucx/map.h
ucx_HEADERS += ucx/mempool.h
ucx_HEADERS += ucx/properties.h
ucx_HEADERS += ucx/stack.h
ucx_HEADERS += ucx/string.h
ucx_HEADERS += ucx/test.h
ucx_HEADERS += ucx/ucx.h
ucx_HEADERS += ucx/utils.h

mercurial