/* 
 * $Id: Imakefile,v 1.2 92/06/16 14:44:00 drew Exp $ 
 *
 * Standard rules for building the simulator, along with variable
 * definitions. The include files should reside in $XERIONDIR/config.
 * The first time you build the Makefile you may have to type
 * 'xmkmf'. After that, 'make Makefile' should work just fine
 */
#include <xerion.rules>
#include <xerion.cf>

/* Target program name */
PROG = bm

/* Objects module used to build it */
OBJS = bm.o bm-train.o

/* Header files used in creating bindings */
HDRS = bm.h bm-train.h

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

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

/* Any extra load flags */
EXTRA_LOAD_FLAGS =

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