view buildsys/scripts/batch-build-linux.sh @ 553:a93bb23fca8c

win build fix
author Tassilo Philipp
date Mon, 20 Jun 2022 15:25:01 +0200
parents 3e629dc19168
children
line wrap: on
line source

#!/bin/sh

cd `dirname $0`/../../

# Build libraries.

make -f Makefile.generic clean all

# Build tests: dynload tests need '-ldl'.

( cd test ; make -f Makefile.generic clean )
( cd test ; LDLIBS=-ldl make -f Makefile.generic all-dynload )
( cd test ; make -f Makefile.generic all )