src/Makefile.am

changeset 252
6342cbbd1922
child 253
e19825a1430a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/Makefile.am	Wed Oct 18 12:03:44 2017 +0200
     1.3 @@ -0,0 +1,30 @@
     1.4 +lib_LTLIBRARIES = libucx.la
     1.5 +libucx_la_SOURCES = utils.c
     1.6 +libucx_la_SOURCES += list.c
     1.7 +libucx_la_SOURCES += map.c
     1.8 +libucx_la_SOURCES += avl.c
     1.9 +libucx_la_SOURCES += properties.c
    1.10 +libucx_la_SOURCES += mempool.c
    1.11 +libucx_la_SOURCES += string.c
    1.12 +libucx_la_SOURCES += test.c
    1.13 +libucx_la_SOURCES += allocator.c
    1.14 +libucx_la_SOURCES += logging.c
    1.15 +libucx_la_SOURCES += buffer.c
    1.16 +libucx_la_SOURCES += stack.c
    1.17 +
    1.18 +ucxdir = $(includedir)/ucx
    1.19 +ucx_HEADERS = ucx/allocator.h
    1.20 +ucx_HEADERS += ucx/avl.h
    1.21 +ucx_HEADERS += ucx/buffer.h
    1.22 +ucx_HEADERS += ucx/list.h
    1.23 +ucx_HEADERS += ucx/logging.h
    1.24 +ucx_HEADERS += ucx/map.h
    1.25 +ucx_HEADERS += ucx/mempool.h
    1.26 +ucx_HEADERS += ucx/properties.h
    1.27 +ucx_HEADERS += ucx/stack.h
    1.28 +ucx_HEADERS += ucx/string.h
    1.29 +ucx_HEADERS += ucx/test.h
    1.30 +ucx_HEADERS += ucx/ucx.h
    1.31 +ucx_HEADERS += ucx/utils.h
    1.32 +
    1.33 +

mercurial