Sophie

Sophie

distrib > Mandriva > 2009.1 > x86_64 > media > contrib-backports > by-pkgid > 5449138d6297d4beefc46ffe46a8c51a > files > 412

waf-1.5.11-1mdv2009.1.noarch.rpm

#! /bin/sh

# This script is an autogen.sh-like wrapper for allowing WAF to be installed by jhbuild

WAF=./waf-light
prefix=""

while test -n "$1"; do
	case $1 in
		--prefix=*)
			prefix="$1"
			;;
		--prefix)
			shift;
			prefix="--prefix=$1"
			;;
	esac
	shift;
done


cat > Makefile << EOF
#!/usr/bin/make -f

all:

all_debug:

all_progress:

install:
	$WAF install --yes --strip $prefix

uninstall:
	$WAF uninstall

clean:
	$WAF clean

distclean:
	$WAF distclean
	-rm -f Makefile

check:

dist:

EOF