--- a/tests/Makefile Tue Nov 12 17:34:04 2024 +0100 +++ b/tests/Makefile Mon Nov 18 22:05:42 2024 +0100 @@ -23,8 +23,6 @@ include ../config.mk -CFLAGS += -I../src - TEST_DIR=$(build_dir)/tests SRC = util_allocator.c \ @@ -57,24 +55,24 @@ $(TEST_DIR)/test_allocator$(OBJ_EXT): test_allocator.c ../src/cx/test.h \ ../src/cx/common.h ../src/cx/allocator.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_buffer$(OBJ_EXT): test_buffer.c ../src/cx/test.h \ ../src/cx/common.h util_allocator.h ../src/cx/allocator.h \ ../src/cx/buffer.h ../src/cx/allocator.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_compare$(OBJ_EXT): test_compare.c ../src/cx/test.h \ ../src/cx/common.h ../src/cx/compare.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_hash_key$(OBJ_EXT): test_hash_key.c ../src/cx/test.h \ ../src/cx/common.h ../src/cx/hash_key.h ../src/cx/string.h \ ../src/cx/allocator.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_hash_map$(OBJ_EXT): test_hash_map.c ../src/cx/test.h \ ../src/cx/common.h util_allocator.h ../src/cx/allocator.h \ @@ -82,19 +80,19 @@ ../src/cx/allocator.h ../src/cx/iterator.h ../src/cx/compare.h \ ../src/cx/string.h ../src/cx/hash_key.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_iterator$(OBJ_EXT): test_iterator.c ../src/cx/test.h \ ../src/cx/common.h ../src/cx/iterator.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_json$(OBJ_EXT): test_json.c ../src/cx/test.h \ ../src/cx/common.h ../src/cx/json.h ../src/cx/string.h \ ../src/cx/allocator.h ../src/cx/array_list.h ../src/cx/list.h \ ../src/cx/collection.h ../src/cx/iterator.h ../src/cx/compare.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_list$(OBJ_EXT): test_list.c ../src/cx/test.h \ ../src/cx/common.h util_allocator.h ../src/cx/allocator.h \ @@ -102,20 +100,20 @@ ../src/cx/collection.h ../src/cx/allocator.h ../src/cx/iterator.h \ ../src/cx/compare.h ../src/cx/linked_list.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_mempool$(OBJ_EXT): test_mempool.c ../src/cx/test.h \ ../src/cx/common.h util_allocator.h ../src/cx/allocator.h \ ../src/cx/mempool.h ../src/cx/allocator.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_printf$(OBJ_EXT): test_printf.c ../src/cx/test.h \ ../src/cx/common.h util_allocator.h ../src/cx/allocator.h \ ../src/cx/printf.h ../src/cx/string.h ../src/cx/allocator.h \ ../src/cx/buffer.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_properties$(OBJ_EXT): test_properties.c ../src/cx/test.h \ ../src/cx/common.h util_allocator.h ../src/cx/allocator.h \ @@ -124,39 +122,39 @@ ../src/cx/compare.h ../src/cx/hash_key.h ../src/cx/array_list.h \ ../src/cx/list.h ../src/cx/hash_map.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_streams$(OBJ_EXT): test_streams.c ../src/cx/test.h \ ../src/cx/common.h ../src/cx/streams.h ../src/cx/buffer.h \ ../src/cx/allocator.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_string$(OBJ_EXT): test_string.c ../src/cx/test.h \ ../src/cx/common.h util_allocator.h ../src/cx/allocator.h \ ../src/cx/string.h ../src/cx/allocator.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_szmul$(OBJ_EXT): test_szmul.c ../src/cx/test.h \ ../src/cx/common.h ../src/szmul.c ../src/cx/common.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/test_tree$(OBJ_EXT): test_tree.c ../src/cx/tree.h \ ../src/cx/common.h ../src/cx/collection.h ../src/cx/allocator.h \ ../src/cx/iterator.h ../src/cx/compare.h ../src/cx/test.h \ util_allocator.h ../src/cx/allocator.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/ucxtest$(OBJ_EXT): ucxtest.c ../src/cx/common.h \ ../src/cx/test.h ../src/cx/common.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $< $(TEST_DIR)/util_allocator$(OBJ_EXT): util_allocator.c util_allocator.h \ ../src/cx/allocator.h ../src/cx/common.h ../src/cx/test.h @echo "Compiling $<" - $(CC) -o $@ $(CFLAGS) -c $< + $(CC) -o $@ $(CFLAGS) -I../src -c $<