tests/Makefile

Wed, 20 Mar 2024 23:35:18 +0100

author
Mike Becker <universe@uap-core.de>
date
Wed, 20 Mar 2024 23:35:18 +0100
changeset 846
71f4e0a13bb0
parent 833
5c926801f052
permissions
-rw-r--r--

add missing header dependencies

     1 # Copyright 2023 Mike Becker. All rights reserved.
     2 #
     3 # Redistribution and use in source and binary forms, with or without
     4 # modification, are permitted provided that the following conditions are met:
     5 #
     6 # 1. Redistributions of source code must retain the above copyright
     7 # notice, this list of conditions and the following disclaimer.
     8 #
     9 # 2. Redistributions in binary form must reproduce the above copyright
    10 # notice, this list of conditions and the following disclaimer in the
    11 # documentation and/or other materials provided with the distribution.
    12 #
    13 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    14 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    15 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    16 # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    17 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    18 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    19 # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    20 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    21 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    22 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    24 include ../config.mk
    26 CFLAGS += -I../src
    28 TEST_DIR=$(build_dir)/tests
    30 SRC = util_allocator.c test_utils.c test_hash_key.c test_allocator.c \
    31 	test_compare.c test_string.c test_buffer.c test_list.c test_tree.c \
    32 	test_printf.c test_mempool.c test_hash_map.c ucxtest.c
    34 OBJ_EXT=.o
    35 OBJ=$(SRC:%.c=$(TEST_DIR)/%$(OBJ_EXT))
    37 all: $(TEST_DIR) $(TEST_DIR)/ucxtest
    39 $(TEST_DIR)/ucxtest: $(OBJ) $(build_dir)/libucx_static.a
    40 	$(CC) -o $@ $(LDFLAGS) $+
    42 $(build_dir)/libucx_static.a:
    43 	test -f "$@"
    45 $(TEST_DIR):
    46 	$(MKDIR) $@
    48 FORCE:
    50 $(TEST_DIR)/test_allocator$(OBJ_EXT): test_allocator.c ../src/cx/test.h \
    51  ../src/cx/allocator.h ../src/cx/common.h
    52 	@echo "Compiling $<"
    53 	$(CC) -o $@ $(CFLAGS) -c $<
    55 $(TEST_DIR)/test_buffer$(OBJ_EXT): test_buffer.c ../src/cx/test.h \
    56  util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
    57  ../src/cx/buffer.h ../src/cx/allocator.h
    58 	@echo "Compiling $<"
    59 	$(CC) -o $@ $(CFLAGS) -c $<
    61 $(TEST_DIR)/test_compare$(OBJ_EXT): test_compare.c ../src/cx/test.h \
    62  ../src/cx/compare.h ../src/cx/common.h
    63 	@echo "Compiling $<"
    64 	$(CC) -o $@ $(CFLAGS) -c $<
    66 $(TEST_DIR)/test_hash_key$(OBJ_EXT): test_hash_key.c ../src/cx/test.h \
    67  ../src/cx/hash_key.h ../src/cx/common.h ../src/cx/string.h \
    68  ../src/cx/allocator.h
    69 	@echo "Compiling $<"
    70 	$(CC) -o $@ $(CFLAGS) -c $<
    72 $(TEST_DIR)/test_hash_map$(OBJ_EXT): test_hash_map.c ../src/cx/test.h \
    73  util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
    74  ../src/cx/hash_map.h ../src/cx/map.h ../src/cx/collection.h \
    75  ../src/cx/allocator.h ../src/cx/iterator.h ../src/cx/string.h \
    76  ../src/cx/hash_key.h
    77 	@echo "Compiling $<"
    78 	$(CC) -o $@ $(CFLAGS) -c $<
    80 $(TEST_DIR)/test_list$(OBJ_EXT): test_list.c ../src/cx/test.h \
    81  util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
    82  ../src/cx/compare.h ../src/cx/utils.h ../src/cx/array_list.h \
    83  ../src/cx/list.h ../src/cx/collection.h ../src/cx/allocator.h \
    84  ../src/cx/iterator.h ../src/cx/linked_list.h
    85 	@echo "Compiling $<"
    86 	$(CC) -o $@ $(CFLAGS) -c $<
    88 $(TEST_DIR)/test_mempool$(OBJ_EXT): test_mempool.c ../src/cx/test.h \
    89  util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
    90  ../src/cx/mempool.h ../src/cx/allocator.h
    91 	@echo "Compiling $<"
    92 	$(CC) -o $@ $(CFLAGS) -c $<
    94 $(TEST_DIR)/test_printf$(OBJ_EXT): test_printf.c ../src/cx/test.h \
    95  util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
    96  ../src/cx/printf.h ../src/cx/string.h ../src/cx/allocator.h \
    97  ../src/cx/buffer.h
    98 	@echo "Compiling $<"
    99 	$(CC) -o $@ $(CFLAGS) -c $<
   101 $(TEST_DIR)/test_string$(OBJ_EXT): test_string.c ../src/cx/test.h \
   102  util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
   103  ../src/cx/string.h ../src/cx/allocator.h
   104 	@echo "Compiling $<"
   105 	$(CC) -o $@ $(CFLAGS) -c $<
   107 $(TEST_DIR)/test_tree$(OBJ_EXT): test_tree.c ../src/cx/tree.h \
   108  ../src/cx/common.h ../src/cx/iterator.h ../src/cx/test.h \
   109  util_allocator.h ../src/cx/allocator.h
   110 	@echo "Compiling $<"
   111 	$(CC) -o $@ $(CFLAGS) -c $<
   113 $(TEST_DIR)/test_utils$(OBJ_EXT): test_utils.c ../src/cx/test.h \
   114  ../src/cx/utils.h ../src/cx/common.h ../src/cx/buffer.h \
   115  ../src/cx/allocator.h ../src/szmul.c
   116 	@echo "Compiling $<"
   117 	$(CC) -o $@ $(CFLAGS) -c $<
   119 $(TEST_DIR)/ucxtest$(OBJ_EXT): ucxtest.c ../src/cx/test.h
   120 	@echo "Compiling $<"
   121 	$(CC) -o $@ $(CFLAGS) -c $<
   123 $(TEST_DIR)/util_allocator$(OBJ_EXT): util_allocator.c util_allocator.h \
   124  ../src/cx/allocator.h ../src/cx/common.h ../src/cx/test.h
   125 	@echo "Compiling $<"
   126 	$(CC) -o $@ $(CFLAGS) -c $<

mercurial