/* set your compiler here if you want to override the default setup */

/* add any extra load flags such as -static or -g */
LOCAL_LDFLAGS =

/* Include files for tcl, Motif and the Send package.
   Change the first two as needed (SEND is included in this package)
 */
MOTIF_INCLUDE = /usr/local/include
SEND_INCLUDE  = ../send

/* The corresponding libraries.
   Change the first two as needed by setting the -L option 
 */

/*
MOTIF_LIB = -lXm -lXt -lX11
SEND_LIB  = -L../send -ltclXtSend
TCL_LIB = -ltcl -lm
REPLAY_LIB = -L.. -lReplayXm

LOCAL_LIBRARIES = $(REPLAY_LIB)
INCLUDES =  -I$(MOTIF_INCLUDE) -I$(SEND_INCLUDE)
LOCAL_LIBRARIES =  $(REPLAY_LIB) $(SEND_LIB) $(TCL_LIB) $(MOTIF_LIB)
*/

REPLAY_DEP_LIB = ../libReplayXm.a
OBJS = xmeditor.o 

SRCS =	xmeditor.c

AllTarget(xmeditor)
NormalProgramTarget(xmeditor,$(OBJS),$(REPLAY_DEP_LIB),$(LOCAL_LIBRARIES),$(LDLIBS))

