DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T m

⟦ff1a27c84⟧ TextFile

    Length: 592 (0x250)
    Types: TextFile
    Names: »mkhplib«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦4ef0278ca⟧ »./binutils.tar.Z« 
        └─⟦3761b9c35⟧ 
            └─⟦this⟧ »binutils/hp-bin/mkhplib« 

TextFile

#!/bin/csh -f

if (! -d /usr/local/lib/gnu) then
  mkdir /usr/local/lib/gnu
endif

# Note: ordering of directories must be reverse of the normal search
# order!  This is because we are compressing all of the directories
# into a single directory.  If two directories each contain a library
# with the same name, the one we convert second will be the one we
# end up with.

foreach dir (/usr/local/lib /usr/lib /lib)
  cd $dir
  foreach i (lib*.a)
    echo "$dir/$i"
    hpxt $i /usr/local/lib/gnu/$i
  end
end

cd /lib
foreach i (*crt0.o)
  echo "/lib/$i"
  hpxt $i /usr/local/lib/gnu/$i
end