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

⟦2cb86a36e⟧ TextFile

    Length: 487 (0x1e7)
    Types: TextFile
    Names: »maXe.sh«

Derivation

└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
    └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« 
        └─⟦d3ac74d73⟧ 
            └─⟦this⟧ »isode-5.0/others/max/maXe.sh« 
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/others/max/maXe.sh« 

TextFile

#! /bin/sh

case $# in
    0)	echo "usage: maXe suffix [ make arguments -- ] files" 1>&2
	exit 1 ;;
esac

S=$1; shift

Y=""
for A
do
    shift
    case X$A in
	X--) break
    esac

    Y="$Y $A"
done

case $# in
    0)  set $Y; Y="" ;;
esac

Z=""
for A
do
    B=`expr "$A" : '\(.*\)\.[^\.]*$' '|' "$A"`
    Z="$Z $B.$S"
done

A=${MAXEFILE-@(LIBDIR)/maXefile} X=""
if [ -f $A ]; then
  X="-f $A"
fi
if [ -f ./Makefile ]; then
  X="$X -f ./Makefile"
fi

echo "make $X $Y $Z"
make $X $Y $Z