parser-c 0.3.0

Macros for parser-c.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# Template for executing test suites
source ./configuration

source $CTEST_BINDIR/setup_test_suite my-lib

export CC=$CTEST_BINDIR/cc-wrapper
cd my-lib-dir

# Waste of time if run each time
if [ -n $RUN_CONFIGURE ]; then
	./configure
fi
make clean 2> /dev/null
make my-lib-target