#!/bin/sh source ../functions.sh touch config.omk-default echo "CFLAGS=-DNUMBER=123" > config.omk make||error "Can't compile program with custom CFLAGS" _compiled/bin/test|grep 123 || error "Custom CFLAGS didn't influence the output"