As usual, it's dangerous to put it in both because then we need to
   update both as all those new language files keep pouring in (we hope). 

Well, how about

cat ANNOUNCE.template
[...]
#include "LANGUAGES"
[...]
#include "TEAM"
[...]

cat README.template
[...]
#include "LANGUAGES"
[...]
#include "TEAM"
[...]

cat update.sh
!#/bin/sh

for i  in ANNOUNCE README; do
    cp $i.template $i.c
    gcc  -E -C -P  $i.c > $i
    rm $i.c
done

Mate






Reply via email to