This is /usr/miro/src/include. It contains C header files included by
various Miro source code. The current contents are:

  Listing		0-length file used to keep track of last time
			  printouts were done so only changed files
			  are printed when we do "make -N Listing"
  Makefile		self-explanatory
  arrow.[gh]
  box-relations.[gh]
  box.[gh]
  convert.h
  error.h
  errors.h		ancient error output mechanism
  extract.h
  id-hash.h
  iff2ps.h
  list_type.h		type-unsafe Singly linked list implementation
  mem.h
  mwm.h			command-line parsing, edit distance, other miscellany
  parser.[gh]
  sysname-hash.h

Some header files #include other files. It is a good idea to represent
these dependencies in Makefiles. The dependencies are shown below. The
files parse-headers, extract-headers, and structures-headers in the
~miro/libi/make directory define these dependencies, and can be
included in a Makefile using "include /usr/miro/libi/make/<file>"
on a line of its own.

	/* Prober and verifier library */
	errors.h:		NONE
	mwm.h:			NONE
	list_type.h:		mwm.h

	/* Parse library */
	error.h:		NONE
	id-hash.h:		NONE
	mem.h:			NONE
	parser.h:		id-hash.h
	parser.g:		NONE

	/* Extract library */
	convert.h:		NONE
	extract.h:		parser.h, convert.h

	/* Structures library */
	arrow.h:		box.h
	arrow.g:		arrow.h
	box.h:			NONE
	box.g:			box.h
	box-relations.h:	NONE
	box-relations.g:	box.h, box-relations.h
	sysname-hash.h:		arrow.h, box.h
