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

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

mercurial