summaryrefslogtreecommitdiffstats
path: root/configure
blob: 894f6becd8541639978a9927b6cdb31973041c64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
srcdir=$(cd $(dirname $0); pwd -P)

if [ "$srcdir" = "$(pwd -P)" ]; then
    # We're not in a separate build dir, but in the source dir, we already
    # have a Makefile.
    exit 0
fi

cat > Makefile <<EOF
srcdir:=$srcdir

default:
	\$(MAKE) -f \$(srcdir)/Makefile srcdir=\$(srcdir)

%:
	\$(MAKE) -f \$(srcdir)/Makefile srcdir=\$(srcdir) \$*
EOF