/**********************************************************************
 * $Id: Imakefile,v 1.2 93/01/26 11:17:27 drew Exp $
 **********************************************************************/

#ifndef UseXerionBuild
#define UseXerionBuild
#endif

#include <xerion.rules>
#include <xerion.cf>

#define IHaveSubdirs

  SUBDIRS = config src

MakeSubdirs($(SUBDIRS))
DependSubdirs($(SUBDIRS))

World::
	@echo ""
	@echo "Building Version 3.1 of the Xerion Neural Network Simulator"
	@echo ""
	@echo "##############################################################"
	@echo "# Did you remember to check the configuration parameters in  #"
	@echo "# the directory ./config/xerion.cf?                          #"
	@echo "##############################################################"
	@echo ""
	@date
	@echo ""
	$(MAKE) $(MFLAGS) Makefile
	$(MAKE) $(MFLAGS) Makefiles
	$(MAKE) $(MFLAGS) clean
	$(MAKE) $(MFLAGS) includes
	$(MAKE) $(MFLAGS) depend
	$(MAKE) $(MFLAGS) all
	@echo ""
	@date
	@echo ""
	@echo "Full build of Version 3.1 of the Xerion Neural Network Simulator complete."
	@echo ""

Everything::
	@echo ""
	@echo "Rebuilding Version 3.1 of the Xerion Neural Network Simulator"
	@echo ""
	@echo "##############################################################"
	@echo "# Did you remember to check the configuration parameters in  #"
	@echo "# the directory ./config/xerion.cf?                          #"
	@echo "##############################################################"
	@echo ""
	@date
	@echo ""
	$(MAKE) $(MFLAGS) Makefile
	$(MAKE) $(MFLAGS) Makefiles
	$(MAKE) $(MFLAGS) includes
	$(MAKE) $(MFLAGS) depend
	$(MAKE) $(MFLAGS) all
	@echo ""
	@date
	@echo ""
	@echo "Full rebuild of Version 3.1 of the Xerion Neural Network Simulator complete."
	@echo ""

