tests/Makefile

Wed, 20 Dec 2023 16:46:14 +0100

author
Mike Becker <universe@uap-core.de>
date
Wed, 20 Dec 2023 16:46:14 +0100
changeset 766
e59b76889f00
parent 756
0b635553b86a
child 767
d31f4d4075dc
permissions
-rw-r--r--

bring back UCX test - fixes #341

universe@753 1 # Copyright 2023 Mike Becker. All rights reserved.
universe@753 2 #
universe@753 3 # Redistribution and use in source and binary forms, with or without
universe@753 4 # modification, are permitted provided that the following conditions are met:
universe@753 5 #
universe@753 6 # 1. Redistributions of source code must retain the above copyright
universe@753 7 # notice, this list of conditions and the following disclaimer.
universe@753 8 #
universe@753 9 # 2. Redistributions in binary form must reproduce the above copyright
universe@753 10 # notice, this list of conditions and the following disclaimer in the
universe@753 11 # documentation and/or other materials provided with the distribution.
universe@753 12 #
universe@753 13 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@753 14 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@753 15 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@753 16 # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@753 17 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@753 18 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@753 19 # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@753 20 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@753 21 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@753 22 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@753 23
universe@753 24 include ../config.mk
universe@753 25
universe@766 26 CFLAGS += -I../src
universe@766 27
universe@754 28 TEST_DIR=$(build_dir)/tests
universe@753 29
universe@766 30 SRC = test_utils.c ucxtest.o
universe@753 31
universe@766 32 OBJ_EXT=.o
universe@766 33 OBJ=$(SRC:%.c=$(TEST_DIR)/%$(OBJ_EXT))
universe@766 34
universe@766 35 all: $(TEST_DIR) $(TEST_DIR)/ucxtest
universe@766 36
universe@766 37 $(TEST_DIR)/ucxtest: $(build_dir)/libucx_static.a $(OBJ)
universe@766 38 $(CC) -o $@ $+
universe@766 39
universe@766 40 $(build_dir)/libucx_static.a:
universe@766 41 test -f "$@"
universe@753 42
universe@753 43 $(TEST_DIR):
universe@766 44 $(MKDIR) $@
universe@766 45
universe@766 46 FORCE:
universe@766 47
universe@766 48 $(TEST_DIR)/test_map_generics$(OBJ_EXT): test_map_generics.c \
universe@766 49 test_map_generics.h ../src/cx/map.h ../src/cx/common.h \
universe@766 50 ../src/cx/collection.h ../src/cx/allocator.h ../src/cx/iterator.h \
universe@766 51 ../src/cx/string.h ../src/cx/hash_key.h ../src/cx/hash_map.h \
universe@766 52 ../src/cx/map.h
universe@766 53 @echo "Compiling $<"
universe@766 54 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 55
universe@766 56 $(TEST_DIR)/test_utils$(OBJ_EXT): test_utils.c test_utils.h \
universe@766 57 ../src/cx/test.h
universe@766 58 @echo "Compiling $<"
universe@766 59 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 60
universe@766 61 $(TEST_DIR)/ucxtest$(OBJ_EXT): ucxtest.c test_utils.h ../src/cx/test.h
universe@766 62 @echo "Compiling $<"
universe@766 63 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 64

mercurial