tests/Makefile

changeset 781
a786b0a89b37
parent 780
9965df621652
child 782
74d777455e96
equal deleted inserted replaced
780:9965df621652 781:a786b0a89b37
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_string.c \ 30 SRC = util_allocator.c test_utils.c test_hash_key.c test_string.c \
31 test_printf.c ucxtest.c 31 test_printf.c test_mempool.c ucxtest.c
32 32
33 OBJ_EXT=.o 33 OBJ_EXT=.o
34 OBJ=$(SRC:%.c=$(TEST_DIR)/%$(OBJ_EXT)) 34 OBJ=$(SRC:%.c=$(TEST_DIR)/%$(OBJ_EXT))
35 35
36 all: $(TEST_DIR) $(TEST_DIR)/ucxtest 36 all: $(TEST_DIR) $(TEST_DIR)/ucxtest
58 ../src/cx/string.h ../src/cx/hash_key.h ../src/cx/hash_map.h \ 58 ../src/cx/string.h ../src/cx/hash_key.h ../src/cx/hash_map.h \
59 ../src/cx/map.h 59 ../src/cx/map.h
60 @echo "Compiling $<" 60 @echo "Compiling $<"
61 $(CC) -o $@ $(CFLAGS) -c $< 61 $(CC) -o $@ $(CFLAGS) -c $<
62 62
63 $(TEST_DIR)/test_mempool$(OBJ_EXT): test_mempool.c ../src/cx/test.h \
64 util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
65 ../src/cx/mempool.h ../src/cx/allocator.h
66 @echo "Compiling $<"
67 $(CC) -o $@ $(CFLAGS) -c $<
68
63 $(TEST_DIR)/test_printf$(OBJ_EXT): test_printf.c ../src/cx/test.h \ 69 $(TEST_DIR)/test_printf$(OBJ_EXT): test_printf.c ../src/cx/test.h \
64 util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \ 70 util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
65 ../src/cx/printf.h ../src/cx/string.h ../src/cx/allocator.h \ 71 ../src/cx/printf.h ../src/cx/string.h ../src/cx/allocator.h \
66 ../src/cx/buffer.h 72 ../src/cx/buffer.h
67 @echo "Compiling $<" 73 @echo "Compiling $<"

mercurial