1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
#! /bin/sh
if test -z "$AWK"; then
AWK=awk
fi
if test -z "$CC"; then
CC=cc
fi
if test -z "$srcdir"; then
srcdir=.
fi
rm -f comm.h
cat << EOF > comm.h
/*
* This file is automagically created from comm.c -- DO NOT EDIT
*/
struct comm
{
char *name;
int flags;
#ifdef MULTIUSER
AclBits userbits[ACL_BITS_PER_CMD];
#endif
};
#define ARGS_MASK (3)
#define ARGS_ZERO (0)
#define ARGS_ONE (1)
#define ARGS_TWO (2)
#define ARGS_THREE (3)
#define ARGS_PLUSONE (1<<2)
#define ARGS_PLUSTWO (1<<3)
#define ARGS_ORMORE (1<<4)
#define NEED_FORE (1<<5) /* this command needs a fore window */
#define NEED_DISPLAY (1<<6) /* this command needs a display */
#define ARGS_ZEROONE (ARGS_ZERO|ARGS_PLUSONE)
#define ARGS_ONETWO (ARGS_ONE |ARGS_PLUSONE)
#define ARGS_TWOTHREE (ARGS_TWO |ARGS_PLUSONE)
#define ARGS_ZEROTWO (ARGS_ZERO|ARGS_PLUSTWO)
#define ARGS_ZEROONETWO (ARGS_ZERO|ARGS_PLUSONE|ARGS_PLUSTWO)
struct action
{
int nr;
char **args;
};
#define RC_ILLEGAL -1
EOF
$AWK < ${srcdir}/comm.c >> comm.h '
/^ [{] ".*/ { if (old > $2) {
printf("***ERROR: %s <= %s !!!\n\n", $2, old);
exit 1;
}
old = $2;
}
'
$CC -E -I. -I${srcdir} ${srcdir}/comm.c > comm.cpp
sed < comm.cpp \
-n \
-e '/^ *{ "/y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \
-e '/^ *{ "/s/^ *{ "\([^"]*\)".*/\1/p' \
| $AWK '
/.*/ { printf "#define RC_%s %d\n",$0,i++;
}
END { printf "\n#define RC_LAST %d\n",i-1;
}
' >> comm.h
chmod a-w comm.h
rm -f comm.cpp
|