#*++
#COPYRIGHT:
#This file is part of the GSM Suite, a set of programs for
#manipulating state machines in a graphical fashion.
#Copyright (C) 1996, 1997  G. Andrew Mangogna.
#
#LICENSE:
#This program is free software; you can redistribute it and/or
#modify it under the terms of the GNU General Public License
#as published by the Free Software Foundation; either version 2
#of the License, or (at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program; if not, write to the
#Free Software Foundation, Inc.,
#59 Temple Place - Suite 330,
#Boston, MA  02111-1307, USA.
#
#MODULE:
#	Overall makefile for the GSM Suite
#
#$RCSfile: Makefile,v $
#$Revision: 1.9 $
#$Date: 1997/07/14 02:30:27 $
#
#ABSTRACT:
#
#CONDITIONAL COMPILATION:
#
#MODIFICATION HISTORY:
#$Log: Makefile,v $
#Revision 1.9  1997/07/14 02:30:27  andrewm
#Checkpoint.  Rework makefiles.  Rework man pages.  Fixed PostScript problems.
#
#*--

LIBDIRS		= \
			chio \
			machcommon \
			machbase \
			machgraphic \
			machvisit \
			applframe \
			gsmframe \
			$(NULL)

PROGDIRS	= \
			gsm2dot \
			gsmcheck \
			gsm2cc \
			gsm2ps \
			gsmedit \
			$(NULL)

SUBDIRS		= \
			$(LIBDIRS) \
			$(PROGDIRS) \
			$(NULL)

.PHONY : $(SUBDIRS) all clean install uninstall

all : $(SUBDIRS)

clean :
	@for f in $(SUBDIRS) ; do $(MAKE) -C $$f clean ; done

install :
	@for f in $(PROGDIRS) ; do $(MAKE) -C $$f install ; done

uninstall :
	@for f in $(PROGDIRS) ; do $(MAKE) -C $$f uninstall ; done

$(SUBDIRS) :
	$(MAKE) -C $@
