#!/bin/bash . ./wvtest.sh [[ $OMK_RULES != "linux" ]] && exit 0 WVSTART "Compile assembler in .S file" cat > 'test.S' <<'EOF' .global main main: EOF cat > 'Makefile.omk' <<'EOF' bin_PROGRAMS = test test_SOURCES = test.S EOF needs_valid_CC WVPASS make V=1 WVSTART "Compile assembler in .s file" cat > 'test.s' <<'EOF' .global main main: EOF cat > 'Makefile.omk' <<'EOF' bin_PROGRAMS = test test_SOURCES = test.s EOF needs_valid_CC WVPASS make V=1