/*
 * $Id: Imakefile,v 1.2 92/06/16 14:57:21 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 = rbp

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

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

/* Any local libraries (must give full 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 */
SimulatorTarget($(PROG))
