/*
**	Imakefile for xmtg
*/

#ifdef UseInstalledXmc
#include <xmcLib.tmpl>
#else
#include "../../config/xmcLib.tmpl"
#endif

#ifdef XmxInstallRoot
    INSTALL_DIR = XmxInstallRoot/bin
#else
    INSTALL_DIR = $(BINDIR)
#endif

 EXTRA_INCLUDES = -I$(XMCINCDIR)
    CDEBUGFLAGS = -g
        DEPLIBS = XmcClientDepLib XawClientDepLibs
LOCAL_LIBRARIES = XmcClientLib XawClientLibs
           SRCS = xmtg.c node.c ig.c ui.c layout.c pathfind.c
           OBJS = xmtg.o node.o ig.o ui.o layout.o pathfind.o

AllTarget(xmtg)

NormalProgramTarget(xmtg,$(OBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),)

InstallProgram(xmtg,$(INSTALL_DIR))
DependTarget()
LintTarget()
