tests/Makefile

Fri, 29 Dec 2023 16:15:05 +0100

author
Mike Becker <universe@uap-core.de>
date
Fri, 29 Dec 2023 16:15:05 +0100
changeset 778
4a72bc4f09f4
parent 777
e5b29e6f0615
child 780
9965df621652
permissions
-rw-r--r--

fix missing dependencies for test_string.c

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@777 26 CFLAGS += -I../src -Wno-clobbered
universe@766 27
universe@754 28 TEST_DIR=$(build_dir)/tests
universe@753 29
universe@777 30 SRC = util_allocator.c test_utils.c test_hash_key.c test_string.c ucxtest.c
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@767 37 $(TEST_DIR)/ucxtest: $(OBJ) $(build_dir)/libucx_static.a
universe@773 38 $(CC) -o $@ $(LDFLAGS) $+
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@768 48 $(TEST_DIR)/test_hash_key$(OBJ_EXT): test_hash_key.c ../src/cx/test.h \
universe@768 49 ../src/cx/hash_key.h ../src/cx/common.h ../src/cx/string.h \
universe@768 50 ../src/cx/allocator.h
universe@768 51 @echo "Compiling $<"
universe@768 52 $(CC) -o $@ $(CFLAGS) -c $<
universe@768 53
universe@766 54 $(TEST_DIR)/test_map_generics$(OBJ_EXT): test_map_generics.c \
universe@766 55 test_map_generics.h ../src/cx/map.h ../src/cx/common.h \
universe@766 56 ../src/cx/collection.h ../src/cx/allocator.h ../src/cx/iterator.h \
universe@766 57 ../src/cx/string.h ../src/cx/hash_key.h ../src/cx/hash_map.h \
universe@766 58 ../src/cx/map.h
universe@766 59 @echo "Compiling $<"
universe@766 60 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 61
universe@778 62 $(TEST_DIR)/test_string$(OBJ_EXT): test_string.c ../src/cx/test.h \
universe@778 63 util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
universe@778 64 ../src/cx/string.h ../src/cx/allocator.h
universe@777 65 @echo "Compiling $<"
universe@777 66 $(CC) -o $@ $(CFLAGS) -c $<
universe@777 67
universe@767 68 $(TEST_DIR)/test_utils$(OBJ_EXT): test_utils.c ../src/cx/test.h \
universe@767 69 ../src/cx/utils.h ../src/cx/common.h ../src/cx/buffer.h \
universe@767 70 ../src/cx/allocator.h ../src/szmul.c
universe@766 71 @echo "Compiling $<"
universe@766 72 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 73
universe@767 74 $(TEST_DIR)/ucxtest$(OBJ_EXT): ucxtest.c ../src/cx/test.h
universe@766 75 @echo "Compiling $<"
universe@766 76 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 77
universe@770 78 $(TEST_DIR)/util_allocator$(OBJ_EXT): util_allocator.c util_allocator.h \
universe@770 79 ../src/cx/allocator.h ../src/cx/common.h ../src/cx/test.h
universe@770 80 @echo "Compiling $<"
universe@770 81 $(CC) -o $@ $(CFLAGS) -c $<
universe@770 82

mercurial