#!/bin/csh

set filelist = ( README LIESMICH INSTALL COPYING DEMO DEMO.command.de DEMO.command.us Biosim.tmpl biosim_mono *.channel *.description *.hlp.* ask* commandline_options )
foreach i ( $filelist )
	pretty $i
end

# print BIOSIM sources

cd SOURCES
set filelist = ( Make* *.h *.c text.de text.us )
foreach i ( $filelist )
	../pretty $i
end

# print HELPSERVER sources

cd ../HELP
set filelist = ( Make* *.h *.c HelpServer* helptext.de helptext.us )
foreach i ( $filelist )
	../pretty $i
end
