#!/bin/sh

## Copyright (C) 1997 The New York Group Theory Cooperative
## See magnus/doc/COPYRIGHT for the full notice.

## Contents: Concatenate all given source files with C-preprocessor 
##           directives `#line' to separate the ones to stdout.
##           General purpose to make huge hierarchies like SMApps,
##           SessionManager, Group, etc.
##
## Principal Author: Dmitry Pechkin
##
## Status: Useable.
##
## Revision History:
##
## Next implementation steps:
##

for i in $* 
do
  echo "#line 1 " \"$i\"
  cat < $i
done
