summaryrefslogtreecommitdiff
path: root/package/depmaker
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-09-14 19:04:46 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-09-14 19:04:46 +0200
commit05d0076d97ed69a531df1aa5cde3a1e6ed17f922 (patch)
treee605e2d5de96fe9afe7ad8724fe57e9e5c5417e1 /package/depmaker
parenta2e96ddb9519a2f40857f11501b88e465d25082d (diff)
replace mksh scripts with faster C programs
depmaker and pkgmaker is replaced by C programs. scan-pkgs.sh will be replaced by another mechanism. scan-pkgs.sh is needed to recognize package flavour changes, so that a package is rebuild. Generation of meta-data is a lot faster now. Fix or add new PKG variables to fulfill the needs of the new programs. Documentation will follow as soon as it is stable.
Diffstat (limited to 'package/depmaker')
-rw-r--r--package/depmaker38
1 files changed, 0 insertions, 38 deletions
diff --git a/package/depmaker b/package/depmaker
deleted file mode 100644
index da3923554..000000000
--- a/package/depmaker
+++ /dev/null
@@ -1,38 +0,0 @@
-unset MAKEFLAGS
-export MAKEFLAGS=s
-cd "$(dirname "$0")"
-export TOPDIR=$(realpath ..)
-if gmake --help >/dev/null 2>&1; then
- export GMAKE=gmake
-else
- export GMAKE=make
-fi
-GMAKE="$GMAKE --no-print-directory"
-(( x_cols = (COLUMNS > 10) ? COLUMNS - 2 : 80 ))
-typeset -L$x_cols pbar
-
-for dn in */Makefile; do
- dn=${dn%/*}
- pbar="$dn ..."
- print -nu2 "$pbar\r"
- case $dn {
- (@(?(e)g|uc|)libc|libpthread|uclibc++) ;;
- (*)
- # dnu: directory name, uppercase, y/-+/_X/
- typeset -u dnu=${dn//-/_}
- dnu=${dnu//+/X}
- print "package-\$(ADK_COMPILE_${dnu}) += $dn"
- ;;
- }
- cd $dn
- deps=$($GMAKE show=PKG_BUILDDEP)
- cd ..
- [[ -n $deps ]] || continue
- x="${dn}-compile:"
- for dep in $deps; do
- x="$x ${dep}-compile"
- done
- print -r -- $x
-done >Depends.mk
-pbar=done
-print -u2 "$pbar"