/*
 * $Id: Imakefile,v 1.2 92/06/16 14:54:04 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 = fem

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

/* Header files used in creating bindings */
HDRS = fem.h fem-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))
