summaryrefslogtreecommitdiff
path: root/bootstrap
blob: 395fc80ea113c5a8e98ff79d137d1c1d0441707e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh -eu

for m in m32 mx32; do
	tests=tests-$m
	rm -rf $tests
	mkdir $tests
	s='[[:space:]]*'
	sed "s/@arch@/@arch_$m@/;s/^MPERS_NAME$s=.*/& $m/;s/^ARCH_MFLAGS$s=.*/& -$m/" \
		tests/Makefile.am > $tests/Makefile.am
	for f in tests/*; do
		case "${f##*/}" in
		Makefile*) continue;;
		esac
		ln -s ../"$f" $tests/
	done
done

./generate_mpers_am.sh
./xlat/gen.sh

exec autoreconf -f -i "$@"