26 CFLAGS += -I../src -Wno-clobbered |
26 CFLAGS += -I../src -Wno-clobbered |
27 |
27 |
28 TEST_DIR=$(build_dir)/tests |
28 TEST_DIR=$(build_dir)/tests |
29 |
29 |
30 SRC = util_allocator.c test_utils.c test_hash_key.c test_allocator.c \ |
30 SRC = util_allocator.c test_utils.c test_hash_key.c test_allocator.c \ |
31 test_compare.c \ |
31 test_compare.c test_string.c test_buffer.c \ |
32 test_string.c test_printf.c test_mempool.c test_hash_map.c ucxtest.c |
32 test_printf.c test_mempool.c test_hash_map.c ucxtest.c |
33 |
33 |
34 OBJ_EXT=.o |
34 OBJ_EXT=.o |
35 OBJ=$(SRC:%.c=$(TEST_DIR)/%$(OBJ_EXT)) |
35 OBJ=$(SRC:%.c=$(TEST_DIR)/%$(OBJ_EXT)) |
36 |
36 |
37 all: $(TEST_DIR) $(TEST_DIR)/ucxtest |
37 all: $(TEST_DIR) $(TEST_DIR)/ucxtest |
47 |
47 |
48 FORCE: |
48 FORCE: |
49 |
49 |
50 $(TEST_DIR)/test_allocator$(OBJ_EXT): test_allocator.c ../src/cx/test.h \ |
50 $(TEST_DIR)/test_allocator$(OBJ_EXT): test_allocator.c ../src/cx/test.h \ |
51 ../src/cx/allocator.h ../src/cx/common.h |
51 ../src/cx/allocator.h ../src/cx/common.h |
|
52 @echo "Compiling $<" |
|
53 $(CC) -o $@ $(CFLAGS) -c $< |
|
54 |
|
55 $(TEST_DIR)/test_buffer$(OBJ_EXT): test_buffer.c ../src/cx/test.h \ |
|
56 ../src/cx/buffer.h ../src/cx/common.h ../src/cx/allocator.h |
52 @echo "Compiling $<" |
57 @echo "Compiling $<" |
53 $(CC) -o $@ $(CFLAGS) -c $< |
58 $(CC) -o $@ $(CFLAGS) -c $< |
54 |
59 |
55 $(TEST_DIR)/test_compare$(OBJ_EXT): test_compare.c ../src/cx/test.h \ |
60 $(TEST_DIR)/test_compare$(OBJ_EXT): test_compare.c ../src/cx/test.h \ |
56 ../src/cx/compare.h ../src/cx/common.h |
61 ../src/cx/compare.h ../src/cx/common.h |