2006-07-18 16:45:57 +00:00
|
|
|
#!/bin/sh
|
1994-06-23 13:47:02 +00:00
|
|
|
: $Id$
|
1992-06-24 14:13:10 +00:00
|
|
|
|
|
|
|
: remove dependencies from a makefile, write result on standard output.
|
|
|
|
: we cannot do this directly in a makefile because some make versions
|
|
|
|
: have # start a comment, always.
|
|
|
|
|
|
|
|
sed -e '/^#DEPENDENCIES/,$d' $1
|
|
|
|
echo '#DEPENDENCIES'
|