#!/bin/sh # $Id: catmake 6300 2005-12-28 19:56:24Z giles $ # Expand 'includes' in makefiles. Usage: # catmake orig.mak > makefile awk ' /^include / { print "# INCLUDE OF", $2 while (getline x <$2 > 0) if(x !~ /^#/) print x next } {print} ' $1