view buildsys/scripts/batch-build-linux.sh @ 315:3840e0188520

- allowing lookup of running executable's path by passing NULL to dynload's dlGetLibraryPath()
author Tassilo Philipp
date Wed, 06 Nov 2019 14:13:49 +0100
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 )