fix missing dependencies for test_string.c

Fri, 29 Dec 2023 16:15:05 +0100

author
Mike Becker <universe@uap-core.de>
date
Fri, 29 Dec 2023 16:15:05 +0100
changeset 778
4a72bc4f09f4
parent 777
e5b29e6f0615
child 779
e9611e4d0213

fix missing dependencies for test_string.c

tests/Makefile file | annotate | diff | comparison | revisions
     1.1 --- a/tests/Makefile	Thu Dec 28 20:37:53 2023 +0100
     1.2 +++ b/tests/Makefile	Fri Dec 29 16:15:05 2023 +0100
     1.3 @@ -59,7 +59,9 @@
     1.4  	@echo "Compiling $<"
     1.5  	$(CC) -o $@ $(CFLAGS) -c $<
     1.6  
     1.7 -$(TEST_DIR)/test_string$(OBJ_EXT): test_string.c
     1.8 +$(TEST_DIR)/test_string$(OBJ_EXT): test_string.c ../src/cx/test.h \
     1.9 + util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
    1.10 + ../src/cx/string.h ../src/cx/allocator.h
    1.11  	@echo "Compiling $<"
    1.12  	$(CC) -o $@ $(CFLAGS) -c $<
    1.13  

mercurial