diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 2001-06-26 00:22:25 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-26 11:57:44 +0000 |
commit | 5f929d0c0da8cd6ab656225ff6a3f15d20352856 (patch) | |
tree | 0ff8d0c7c3184fecb78c42a398d4bfd476693c4b /os2/Makefile.SHs | |
parent | 2b96b0a587f7ad8b6305181755f2d821e8a640ff (diff) | |
download | perl-5f929d0c0da8cd6ab656225ff6a3f15d20352856.tar.gz |
static build
Message-ID: <20010626042225.A2604@math.ohio-state.edu>
p4raw-id: //depot/perl@10952
Diffstat (limited to 'os2/Makefile.SHs')
-rw-r--r-- | os2/Makefile.SHs | 72 |
1 files changed, 62 insertions, 10 deletions
diff --git a/os2/Makefile.SHs b/os2/Makefile.SHs index 9efc864afa..9ae99cdc7e 100644 --- a/os2/Makefile.SHs +++ b/os2/Makefile.SHs @@ -231,18 +231,52 @@ sys_harness: perl_sys !NO!SUBS! -# Now we need to find directories in ./ext/ which are two level deep +# Now we need to find directories in ./ext/ which are up to 3 level deep +# Currently (2001/06) there is no directories 4 levels deep. +# (Only directories so that there is no Makefile.PL some levels up matter.) dirs='' +ddirs='' preci='ext/%/Makefile.aout ' for d in ext/* do - # echo "Checking '$d'..." - f="`echo $d/*/Makefile.PL`" - # SDBFile/sdbm, skip kid makefile - if test ! -e "$d/Makefile.PL" -a ! "$f" = ""; then - dirs="$dirs $d" - preci="$preci $d/%/Makefile.aout" + # echo "...Checking '$d'..." + # skip the kid if the parent exists: cmp SDBFile/sdbm, done by MakeMaker + if test ! -e "$d/Makefile.PL"; then + # Need to treat subdirectories manually + # echo "...Checking subdirs of '$d'..." + d_treated='' + for dd in $d/* + do + if test ! -d $dd; then + continue + fi + if test -e "$dd/Makefile.PL"; then + if test "X$d_treated" = "X"; then + d_treated=1 + # echo "...Found parentless 2-level deep Makefile.PL's in $d/*/:" $d/*/Makefile.PL + dirs="$dirs $d" + preci="$preci $d/%/Makefile.aout" + fi + else + # Need to treat subsubdirectories manually + dd_treated='' + for ddd in $dd/* + do + if test ! -d $ddd; then + continue + fi + if test -e "$ddd/Makefile.PL"; then + if test "X$dd_treated" = "X"; then + dd_treated=1 + # echo "...Found parentless 3-level deep Makefile.PL's in $dd/*/:" $dd/*/Makefile.PL + ddirs="$ddirs $dd" + preci="$preci $dd/%/Makefile.aout" + fi + fi + done + fi + done fi done @@ -251,13 +285,31 @@ $spitshell >>Makefile <<!GROK!THIS! !GROK!THIS! +for d in $ddirs +do + # Remove the leading component ext/ + dd=`dirname $d` + pp=`basename $dd` + p=$pp/`basename $d` + $spitshell >>Makefile <<!GROK!THIS! +lib/auto/$p/*/%.a : $d/%/Makefile.aout + @cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout config || echo "\$(MAKE) config failed, continuing anyway..." + cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout LINKTYPE=static CCCDLFLAGS= + +$d/%/Makefile.aout : miniperl_ + cd \$(dir \$@) ; ../../../../miniperl_ -I ../../../../lib Makefile.PL MAKEFILE=Makefile.aout INSTALLDIRS=perl + +!GROK!THIS! + +done + for d in $dirs do p=`basename $d` $spitshell >>Makefile <<!GROK!THIS! -lib/auto/$p/*/%.a : ext/$p/%/Makefile.aout - @cd ext/$p/\$(basename \$(notdir \$@)) ; make -f Makefile.aout config || echo "\$(MAKE) config failed, continuing anyway..." - cd ext/$p/\$(basename \$(notdir \$@)) ; make -f Makefile.aout LINKTYPE=static CCCDLFLAGS= +lib/auto/$p/*/%.a : $d/%/Makefile.aout + @cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout config || echo "\$(MAKE) config failed, continuing anyway..." + cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout LINKTYPE=static CCCDLFLAGS= $d/%/Makefile.aout : miniperl_ cd \$(dir \$@) ; ../../../miniperl_ -I ../../../lib Makefile.PL MAKEFILE=Makefile.aout INSTALLDIRS=perl |