universe@256: # universe@256: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. universe@256: # universe@259: # Copyright 2017 Mike Becker, Olaf Wintermann All rights reserved. universe@256: # universe@256: # Redistribution and use in source and binary forms, with or without universe@256: # modification, are permitted provided that the following conditions are met: universe@256: # universe@256: # 1. Redistributions of source code must retain the above copyright universe@256: # notice, this list of conditions and the following disclaimer. universe@256: # universe@256: # 2. Redistributions in binary form must reproduce the above copyright universe@256: # notice, this list of conditions and the following disclaimer in the universe@256: # documentation and/or other materials provided with the distribution. universe@256: # universe@256: # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" universe@256: # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE universe@256: # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE universe@256: # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE universe@256: # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR universe@256: # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF universe@256: # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS universe@256: # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN universe@256: # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) universe@256: # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE universe@256: # POSSIBILITY OF SUCH DAMAGE. universe@256: # universe@256: universe@252: lib_LTLIBRARIES = libucx.la universe@253: libucx_la_LDFLAGS = -version-info 1:0:0 universe@252: libucx_la_SOURCES = utils.c universe@252: libucx_la_SOURCES += list.c universe@252: libucx_la_SOURCES += map.c universe@252: libucx_la_SOURCES += avl.c universe@252: libucx_la_SOURCES += properties.c universe@252: libucx_la_SOURCES += mempool.c universe@252: libucx_la_SOURCES += string.c universe@252: libucx_la_SOURCES += test.c universe@252: libucx_la_SOURCES += allocator.c universe@252: libucx_la_SOURCES += logging.c universe@252: libucx_la_SOURCES += buffer.c universe@252: libucx_la_SOURCES += stack.c universe@252: universe@252: ucxdir = $(includedir)/ucx universe@252: ucx_HEADERS = ucx/allocator.h universe@252: ucx_HEADERS += ucx/avl.h universe@252: ucx_HEADERS += ucx/buffer.h universe@252: ucx_HEADERS += ucx/list.h universe@252: ucx_HEADERS += ucx/logging.h universe@252: ucx_HEADERS += ucx/map.h universe@252: ucx_HEADERS += ucx/mempool.h universe@252: ucx_HEADERS += ucx/properties.h universe@252: ucx_HEADERS += ucx/stack.h universe@252: ucx_HEADERS += ucx/string.h universe@252: ucx_HEADERS += ucx/test.h universe@252: ucx_HEADERS += ucx/ucx.h universe@252: ucx_HEADERS += ucx/utils.h universe@252: universe@252: