From 18cd5f225b6eb3d4c4a28e39ff20038a63355c84 Mon Sep 17 00:00:00 2001 From: henryk Date: Mon, 19 Nov 2007 01:59:29 +0000 Subject: Add script to generate compile.h git-svn-id: https://svn.openpcd.org:2342/trunk@331 6dc7ffe9-61d6-0310-9af1-9938baff3ed1 --- openpicc/scripts/mkcompile_h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 openpicc/scripts/mkcompile_h (limited to 'openpicc/scripts') diff --git a/openpicc/scripts/mkcompile_h b/openpicc/scripts/mkcompile_h new file mode 100755 index 0000000..22ac262 --- /dev/null +++ b/openpicc/scripts/mkcompile_h @@ -0,0 +1,24 @@ +#!/bin/sh + +MAX_LEN=32 +TRUNCATE="sed -e s/\(.\{1,$MAX_LEN\}\).*/\1/" + +DATE=`LC_ALL=C LANG=C date +%Y%m%d-%H%M%S` +BY=`whoami` +HOST=`hostname | $TRUNCATE` +BYHOST=`echo ${BY}@${HOST} | $TRUNCATE` +SVNREV=`svn info | grep \^Revision: | cut -c 11-` + +svn st | grep \^M >/dev/null + +[ "$?" -eq "0" ] && SVNREV=${SVNREV}-unclean + +echo "#ifndef _COMPILE_H" +echo "#define _COMPILE_H" +echo +echo /\* This file is auto generated \*/ +echo \#define COMPILE_DATE \"${DATE}\" +echo \#define COMPILE_BY \"${BYHOST}\" +echo \#define COMPILE_SVNREV \"${SVNREV}\" +echo +echo "#endif /* _COMPILE_H */" -- cgit v1.2.3