#!/bin/bash . ./wvtest.sh case $OMK_RULES in sysless) echo "SKIPPING sysless RULES!!!!"; exit; esac touch config.omk-default cat > test.idl < Makefile.omk < idlcomp < \${out}-skels.c echo "int idl_common;" > \${out}-common.c echo "int idl_stubs;" > \${out}-stubs.c echo "extern volatile int idl_skels; extern volatile int idl_common; extern volatile int idl_stubs;" > \${out}.h EOF chmod +x idlcomp } create_idlcomp cat > testclient.c < testserver.c < test1.idl <<< "# IDL input for dummy IDL compiler" cat > test2.idl <<< "# IDL input for dummy IDL compiler" cat > testclient.c <<< "int main() {return 0;}" cat > Makefile.omk < config.omk <<< IDL_COMPILER=$PWD/idlcomp WVPASS make