diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2024-10-09 14:29:03 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska@appnovation.com> | 2024-10-09 14:29:03 +0000 |
| commit | 159b8567a6f39849572c50155e07ae95d859f62f (patch) | |
| tree | 7faef5b3d3e7f370a0705748b0c99f47557d9aa3 /tools/gen-deps.sh | |
| parent | 01386893e8a4d1ebde7a8673ba352124e62062d4 (diff) | |
| download | smtpd-starttls-proxy-159b8567a6f39849572c50155e07ae95d859f62f.tar.gz | |
version: 0.0.1.5v0.0.1.5
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'tools/gen-deps.sh')
| -rwxr-xr-x | tools/gen-deps.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tools/gen-deps.sh b/tools/gen-deps.sh index 27e5b3e..befe021 100755 --- a/tools/gen-deps.sh +++ b/tools/gen-deps.sh @@ -7,6 +7,8 @@ echo '# This file has been generated by tools/gen-deps.sh' echo '#' echo +internal_libs= + for dir in src/include/${package} src/* ; do for file in $(ls -1 $dir | grep -- \\.h$) ; do { @@ -70,8 +72,12 @@ for dir in $(ls -1 src | grep -v ^include) ; do echo else echo "lib${file}.a.xyzzy:$(echo "$deps" | sed 's/\.o/.lo/g')" echo endif - echo "lib${file}.so.xyzzy: EXTRA_LIBS :=$libs" - echo "lib${file}.so.xyzzy:$(echo "$deps" | sed 's/\.o/.lo/g')" + if grep -E "^LIB_DEFS [+:]=" package/targets.mak | grep -qF "$file" ; then + echo "lib${file}.so.xyzzy: EXTRA_LIBS :=$libs" + echo "lib${file}.so.xyzzy:$(echo "$deps" | sed 's/\.o/.lo/g')" + else + internal_libs="$internal_libs lib${file}.a.xyzzy" + fi done for file in $(ls -1 src/$dir/deps-exe) ; do @@ -91,3 +97,4 @@ for dir in $(ls -1 src | grep -v ^include) ; do echo "$file: src/$dir/$file.o$deps" done done +echo "INTERNAL_LIBS :=$internal_libs" |
