/* Copyright (C) 1992, Digital Equipment Corporation                         */
/* All rights reserved.                                                      */
/* See the file COPYRIGHT for a full description.                            */

/* Last modified on Tue Feb 11 20:53:21 PST 1992 by muller                   */

Generic_module (StackADT)
Generic_module (Stack)

Module (IntStackADT)
Module (IntStack)
Module (ReelStackADT)
Module (ReelStack)
Module (TxtStackADT)
Module (TxtStack)

generate::
	for t in Int Reel Txt ; do \
          make_generic $$t StackADT $$t ; \
	  make_generic $$t Stack $$t,\ $${t}StackADT; \
          done

