universe@753: # Copyright 2023 Mike Becker. All rights reserved. universe@753: # universe@753: # Redistribution and use in source and binary forms, with or without universe@753: # modification, are permitted provided that the following conditions are met: universe@753: # universe@753: # 1. Redistributions of source code must retain the above copyright universe@753: # notice, this list of conditions and the following disclaimer. universe@753: # universe@753: # 2. Redistributions in binary form must reproduce the above copyright universe@753: # notice, this list of conditions and the following disclaimer in the universe@753: # documentation and/or other materials provided with the distribution. universe@753: # universe@753: # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" universe@753: # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE universe@753: # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE universe@753: # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE universe@753: # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL universe@753: # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR universe@753: # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER universe@753: # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, universe@753: # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE universe@753: # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. universe@753: universe@753: include ../config.mk universe@753: universe@766: CFLAGS += -I../src universe@766: universe@754: TEST_DIR=$(build_dir)/tests universe@753: universe@766: SRC = test_utils.c ucxtest.o universe@753: universe@766: OBJ_EXT=.o universe@766: OBJ=$(SRC:%.c=$(TEST_DIR)/%$(OBJ_EXT)) universe@766: universe@766: all: $(TEST_DIR) $(TEST_DIR)/ucxtest universe@766: universe@766: $(TEST_DIR)/ucxtest: $(build_dir)/libucx_static.a $(OBJ) universe@766: $(CC) -o $@ $+ universe@766: universe@766: $(build_dir)/libucx_static.a: universe@766: test -f "$@" universe@753: universe@753: $(TEST_DIR): universe@766: $(MKDIR) $@ universe@766: universe@766: FORCE: universe@766: universe@766: $(TEST_DIR)/test_map_generics$(OBJ_EXT): test_map_generics.c \ universe@766: test_map_generics.h ../src/cx/map.h ../src/cx/common.h \ universe@766: ../src/cx/collection.h ../src/cx/allocator.h ../src/cx/iterator.h \ universe@766: ../src/cx/string.h ../src/cx/hash_key.h ../src/cx/hash_map.h \ universe@766: ../src/cx/map.h universe@766: @echo "Compiling $<" universe@766: $(CC) -o $@ $(CFLAGS) -c $< universe@766: universe@766: $(TEST_DIR)/test_utils$(OBJ_EXT): test_utils.c test_utils.h \ universe@766: ../src/cx/test.h universe@766: @echo "Compiling $<" universe@766: $(CC) -o $@ $(CFLAGS) -c $< universe@766: universe@766: $(TEST_DIR)/ucxtest$(OBJ_EXT): ucxtest.c test_utils.h ../src/cx/test.h universe@766: @echo "Compiling $<" universe@766: $(CC) -o $@ $(CFLAGS) -c $< universe@766: