/*
 * $Id: Imakefile,v 1.2 92/08/05 17:08:14 xerion Exp $ 
 * Standard Imakfile for building a simulator using the Xerion
 * Neural Network simulator libraries.  The first time you build the
 * Makefile use "xmkmf".  After that, 'make Makefile' should work just
 * fine.
 */

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

  /* Target program name */
           PROG = bp

  /* Objects module used to build it */
            OBJS = bp.o 

  /* Header files used in creating bindings */
            HDRS = bp.h 

  /* Debug flags
   * CDEBUGFLAGS = -g
   */

  /* Any local libraries (must give full (relative) path names)
   *  LOCAL_LIBRARIES =		
   */

  /* The standard libraries we have to link with
   * SYS_LIBRARIES = 
   */

  /* Any extra load flags
   * EXTRA_LOAD_FLAGS =
   */

/* this actually builds the simulator using the above */
  /* this actually builds the simulator using the above */
SimulatorTarget($(PROG))
