src/Makefile

Fri, 12 Apr 2024 21:48:12 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 12 Apr 2024 21:48:12 +0200
changeset 849
edb9f875b7f9
parent 833
5c926801f052
permissions
-rw-r--r--

improves interface of cx_sprintf() variants

     1 # Copyright 2023 Mike Becker. All rights reserved.
     2 #
     3 # Redistribution and use in source and binary forms, with or without
     4 # modification, are permitted provided that the following conditions are met:
     5 #
     6 # 1. Redistributions of source code must retain the above copyright
     7 # notice, this list of conditions and the following disclaimer.
     8 #
     9 # 2. Redistributions in binary form must reproduce the above copyright
    10 # notice, this list of conditions and the following disclaimer in the
    11 # documentation and/or other materials provided with the distribution.
    12 #
    13 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    14 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    15 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    16 # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    17 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    18 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    19 # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    20 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    21 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    22 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    24 include ../config.mk
    26 SRC = allocator.c array_list.c buffer.c compare.c hash_key.c hash_map.c \
    27   linked_list.c list.c map.c tree.c mempool.c printf.c string.c utils.c
    29 OBJ_EXT=.o
    30 OBJ=$(SRC:%.c=$(build_dir)/%$(OBJ_EXT))
    31 GCOV=$(SRC:%.c=%.c.gcov)
    33 static: $(build_dir)/libucx_static$(STLIB_EXT)
    35 shared: $(build_dir)/libucx$(SHLIB_EXT)
    37 check-coverage: $(GCOV)
    38 	mv *.gcov "$(build_dir)"
    40 %.c.gcov: %.c $(build_dir)/%.gcno
    41 	@printf '%16s - %s\n' "$<" "`gcov -Ho "$(build_dir)" $< | grep --max-count=1 -i 'lines executed'`"
    43 $(build_dir)/%.gcno:
    44 	test -f "$@"
    46 $(build_dir)/libucx_static$(STLIB_EXT): $(OBJ)
    47 	$(AR) $(ARFLAGS) $@ $^
    49 $(build_dir)/libucx$(SHLIB_EXT): $(OBJ)
    50 	$(CC) $(LDFLAGS) -o $@ $^
    52 install: $(build_dir)/libucx_static$(STLIB_EXT) $(build_dir)/libucx$(SHLIB_EXT)
    53 	$(MKDIR) $(libdir) $(includedir)/cx
    54 	$(RMFILE) $(libdir)/libucx$(SHLIB_EXT).$(LIBVERSION_MAJOR)
    55 	$(RMFILE) $(libdir)/libucx$(SHLIB_EXT)
    56 	$(COPYFILE) $(build_dir)/libucx_static$(STLIB_EXT) $(libdir)/libucx_static$(STLIB_EXT)
    57 	$(COPYFILE) $(build_dir)/libucx$(SHLIB_EXT) $(libdir)/libucx$(SHLIB_EXT).$(LIBVERSION)
    58 	$(COPYALL) $(src_dir)/src/cx $(includedir)
    59 	$(SYMLINK) $(libdir)/libucx$(SHLIB_EXT).$(LIBVERSION) $(libdir)/libucx$(SHLIB_EXT).$(LIBVERSION_MAJOR)
    60 	$(SYMLINK) $(libdir)/libucx$(SHLIB_EXT).$(LIBVERSION_MAJOR) $(libdir)/libucx$(SHLIB_EXT)
    62 FORCE:
    64 $(build_dir)/allocator$(OBJ_EXT): allocator.c cx/allocator.h cx/common.h
    65 	@echo "Compiling $<"
    66 	$(CC) -o $@ $(CFLAGS) -c $<
    68 $(build_dir)/array_list$(OBJ_EXT): array_list.c cx/array_list.h cx/list.h \
    69  cx/common.h cx/collection.h cx/allocator.h cx/iterator.h cx/compare.h
    70 	@echo "Compiling $<"
    71 	$(CC) -o $@ $(CFLAGS) -c $<
    73 $(build_dir)/buffer$(OBJ_EXT): buffer.c cx/buffer.h cx/common.h \
    74  cx/allocator.h cx/utils.h
    75 	@echo "Compiling $<"
    76 	$(CC) -o $@ $(CFLAGS) -c $<
    78 $(build_dir)/compare$(OBJ_EXT): compare.c cx/compare.h cx/common.h
    79 	@echo "Compiling $<"
    80 	$(CC) -o $@ $(CFLAGS) -c $<
    82 $(build_dir)/hash_key$(OBJ_EXT): hash_key.c cx/hash_key.h cx/common.h
    83 	@echo "Compiling $<"
    84 	$(CC) -o $@ $(CFLAGS) -c $<
    86 $(build_dir)/hash_map$(OBJ_EXT): hash_map.c cx/hash_map.h cx/map.h \
    87  cx/common.h cx/collection.h cx/allocator.h cx/iterator.h cx/string.h \
    88  cx/hash_key.h cx/utils.h
    89 	@echo "Compiling $<"
    90 	$(CC) -o $@ $(CFLAGS) -c $<
    92 $(build_dir)/linked_list$(OBJ_EXT): linked_list.c cx/linked_list.h \
    93  cx/common.h cx/list.h cx/collection.h cx/allocator.h cx/iterator.h \
    94  cx/utils.h cx/compare.h
    95 	@echo "Compiling $<"
    96 	$(CC) -o $@ $(CFLAGS) -c $<
    98 $(build_dir)/list$(OBJ_EXT): list.c cx/list.h cx/common.h cx/collection.h \
    99  cx/allocator.h cx/iterator.h
   100 	@echo "Compiling $<"
   101 	$(CC) -o $@ $(CFLAGS) -c $<
   103 $(build_dir)/map$(OBJ_EXT): map.c cx/map.h cx/common.h cx/collection.h \
   104  cx/allocator.h cx/iterator.h cx/string.h cx/hash_key.h
   105 	@echo "Compiling $<"
   106 	$(CC) -o $@ $(CFLAGS) -c $<
   108 $(build_dir)/mempool$(OBJ_EXT): mempool.c cx/mempool.h cx/common.h \
   109  cx/allocator.h cx/utils.h
   110 	@echo "Compiling $<"
   111 	$(CC) -o $@ $(CFLAGS) -c $<
   113 $(build_dir)/printf$(OBJ_EXT): printf.c cx/printf.h cx/common.h \
   114  cx/string.h cx/allocator.h
   115 	@echo "Compiling $<"
   116 	$(CC) -o $@ $(CFLAGS) -c $<
   118 $(build_dir)/string$(OBJ_EXT): string.c cx/string.h cx/common.h \
   119  cx/allocator.h cx/utils.h
   120 	@echo "Compiling $<"
   121 	$(CC) -o $@ $(CFLAGS) -c $<
   123 $(build_dir)/szmul$(OBJ_EXT): szmul.c
   124 	@echo "Compiling $<"
   125 	$(CC) -o $@ $(CFLAGS) -c $<
   127 $(build_dir)/tree$(OBJ_EXT): tree.c cx/tree.h cx/common.h cx/iterator.h \
   128  cx/array_list.h cx/list.h cx/collection.h cx/allocator.h
   129 	@echo "Compiling $<"
   130 	$(CC) -o $@ $(CFLAGS) -c $<
   132 $(build_dir)/utils$(OBJ_EXT): utils.c cx/utils.h cx/common.h
   133 	@echo "Compiling $<"
   134 	$(CC) -o $@ $(CFLAGS) -c $<

mercurial