tests/Makefile

changeset 787
d0f02310aa47
parent 785
bb18daa62d5f
child 789
9b2f5661bebd
     1.1 --- a/tests/Makefile	Sun Dec 31 14:29:46 2023 +0100
     1.2 +++ b/tests/Makefile	Sun Dec 31 15:02:11 2023 +0100
     1.3 @@ -28,6 +28,7 @@
     1.4  TEST_DIR=$(build_dir)/tests
     1.5  
     1.6  SRC = util_allocator.c test_utils.c test_hash_key.c test_allocator.c \
     1.7 +	test_compare.c \
     1.8  	test_string.c test_printf.c test_mempool.c test_hash_map.c ucxtest.c
     1.9  
    1.10  OBJ_EXT=.o
    1.11 @@ -51,6 +52,11 @@
    1.12  	@echo "Compiling $<"
    1.13  	$(CC) -o $@ $(CFLAGS) -c $<
    1.14  
    1.15 +$(TEST_DIR)/test_compare$(OBJ_EXT): test_compare.c ../src/cx/test.h \
    1.16 + ../src/cx/compare.h ../src/cx/common.h
    1.17 +	@echo "Compiling $<"
    1.18 +	$(CC) -o $@ $(CFLAGS) -c $<
    1.19 +
    1.20  $(TEST_DIR)/test_hash_key$(OBJ_EXT): test_hash_key.c ../src/cx/test.h \
    1.21   ../src/cx/hash_key.h ../src/cx/common.h ../src/cx/string.h \
    1.22   ../src/cx/allocator.h

mercurial