Manish Pandey | 65fe364 | 2025-03-21 12:44:42 +0000 | [diff] [blame] | 1 | # |
| 2 | # Copyright The Transfer List Library Contributors. |
| 3 | # |
| 4 | # SPDX-License-Identifier: MIT OR GPL-2.0-or-later |
| 5 | # |
| 6 | |
| 7 | # |
| 8 | # This is not a complete Makefile of itself. Instead, it is designed to |
| 9 | # be easily embeddable into other systems of Makefiles. |
| 10 | # |
| 11 | |
| 12 | LIBTL_soname = libtl.$(SHAREDLIB_EXT).1 |
| 13 | LIBTL_INCLUDES = debug.h transfer_list.h utils_def_exp.h utils_def.h |
| 14 | LIBTL_VERSION = version.lds |
| 15 | LIBTL_SRCS = src/transfer_list.c |
| 16 | LIBTL_OBJS = $(TLL_SRCS:src/%.c=%.o) |
| 17 | LIBTL_LIB = libtll-$(DTC_VERSION).$(SHAREDLIB_EXT) |
| 18 | |
| 19 | libtl_clean: |
| 20 | @$(VECHO) CLEAN "(libfdt)" |
| 21 | rm -f $(STD_CLEANFILES:%=$(LIBTL_dir)/%) |
| 22 | rm -f $(LIBTL_dir)/$(TLL_soname) |