#!/bin/sh
#
# generate a list of typenames in Lesstif, suitable for use by indent
# the output file is one REALLY long line
#
cat indent.base > indent.pro
cat x.types lesstif.types | sort | uniq | awk '{ printf("-T %s ", $1); }' >> indent.pro
