# file: GNUmakefile
#
# this make file builds the driver program using GNU make and
# the isip make template
# 

# define the isip default compiler
#
ISIP_CPLUS_COMPILER = gcc

# define the source files
#
ISIP_FILES = *.cc

# define the files these source files depend on (usually include files)
#
ISIP_DEPS = *.h

# define the local include file path
# 
ISIP_IFLAGS = -I$(ISIP_TRANSCRIBER)/include \
	      -I/usr/local/include \
              -I/usr/openwin/include

# define the compilation flags: optimize
# 
ISIP_CFLAGS = -g -fpermissive

# define additional include libraries
#
ISIP_LFLAGS_BEFORE = -L$(ISIP_TRANSCRIBER)/lib/$(ISIP_BINARY) \
		    -l_swb_widget -l_transcriber \
		    -L/usr/local/lib -ltk8.3 -ltcl8.3 \
		    -L/usr/openwin/lib -lX11 -lsocket -lnsl

# define additional include libraries
#
ISIP_LFLAGS_AFTER = -lm

# define directory where binaries have to be dumped
#
ISIP_BIN = $(ISIP_TRANSCRIBER)/bin/$(ISIP_BINARY)

# define the name of the executable file (*.exe)
#
ISIP_EXE = run_tcl.exe

# include the isip standard make template
#
include $(ISIP_TRANSCRIBER)/util/make/compile_and_link.make

#
# end of file
