/*
 * $Id: Imakefile,v 1.7 92/12/01 14:18:19 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 = bp

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

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

/* Debug flags used in compiling */
/* CDEBUGFLAGS = */

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

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

/* Any extra load flags */

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