diff options
Diffstat (limited to 'scripts/gen-tests')
-rwxr-xr-x | scripts/gen-tests | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/gen-tests b/scripts/gen-tests index 5d9e087..5521006 100755 --- a/scripts/gen-tests +++ b/scripts/gen-tests @@ -7,9 +7,9 @@ do 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} ejit.o" >> tests.mk - echo " \$(COMPILE_TEST) ${s} ejit.o -o ${exe}" >> tests.mk + 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}" >> tests.mk done |