Initial Spring 2016 commit.

This commit is contained in:
Geoffrey Challen
2015-12-23 00:50:04 +00:00
commit cafa9f5690
732 changed files with 92195 additions and 0 deletions

20
mk/installheaders.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
# installheaders.sh - install header files
# usage: installheaders.sh srcdir destdir
# srcdir/*.h is copied to destdir, if different.
#
if [ $# != 2 ]; then
echo "$0: Usage: $0 srcdir destdir" 1>&2
exit 1
fi
for H in "$1"/*.h; do
BH=`basename "$H"`
if diff "$H" "$2/$BH" >/dev/null 2>&1; then
:
else
echo cp "$H" "$2/$BH"
cp "$H" "$2/$BH"
fi
done