blob: deac247736ca27cbf504ff864eb9f23500c12441 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
PREFIX=TESTS
for s in ${@}
do
src="${s#*/}"
exe="tests/test-${src%.*}"
dep="tests/${exe}.d"
echo "${PREFIX} += ${exe}" >> tests.mk
echo "${dep}:" >> tests.mk
echo "-include ${dep}" >> tests.mk
echo "${exe}: ${s} libejit.a" >> tests.mk
echo " \$(COMPILE_TEST) ${s} libejit.a -o ${exe} -lm" >> tests.mk
done
|