# 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

# source files
#
ISIP_FILES = *.cc

# depenedencies
#
ISIP_DEPS = *.h

# dependency path flags
#
ISIP_IFLAGS = -I $(ISIP_TRANSCRIBER)/include -I /usr/local/tk/include \
	      -I /usr/local/tcl/include -I/usr/openwin/include \
	      -I $(ISIP_TRANSCRIBER)/include/tk_develop/tk

# compilation flags: optimize and debug
# 
ISIP_CFLAGS = -O2 -fpermissive

# output library
# 
ISIP_OLIB = $(ISIP_TRANSCRIBER)/lib/$(ISIP_BINARY)/lib_swb_widget.a
 
# make template
#
include $(ISIP_TRANSCRIBER)/util/make/compile.make

#
# end of file
