You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
349 B
16 lines
349 B
#!/bin/sh
|
|
# A simple installer of include files
|
|
# (c) 2005--2007 Martin Mares <mj@ucw.cz>
|
|
|
|
set -e
|
|
SRC=$1
|
|
DEST=$2
|
|
shift 2
|
|
while [ -n "$1" ] ; do
|
|
if [ ! -f "$DEST/$1" -o "$SRC/$1" -nt "$DEST/$1" ] ; then
|
|
echo "INC $SRC/$1 -> $DEST/$1"
|
|
mkdir -p $DEST/`dirname $1`
|
|
sed -e 's/^\(#include[ ]*\)"\(.*\)"/\1<\2>/' <$SRC/$1 >$DEST/$1
|
|
fi
|
|
shift
|
|
done
|
|
|