#!/bin/sh
#
# this is how I generated the types for lesstif.  This would need to be rerun
# after adding a new type.
#

for file in ../include/*.h ../include/Xm/*.h ../include/XmI/*.h \
	    ../include/Mrm/*.h ../libXm/*.c ../libMrm/*.c \
	    ../clients/xmbind/*.[ch] ../clients/mwm/*.[ch] ../clients/uil/*.[ch]
do
	./typelist < $file
done | sort | uniq > lesstif.types
