
 ###########################################################################
 #                                                                         #
 # Makefile for use with Edinburgh Speech Tools Library
 #                                                                         #
 ###########################################################################

EST_HOME=/afs/sipb.mit.edu/user/kenta/festival/speech_tools

EXECS = 

all: $(EXECS)

## PROGRAMS

## RULES

$(EXECS) : % : %.o $(%_OBJ)
	g++ -O3 -Wall     -o $* $($*_OBJ) $($*_LIBS)   -L$(EST_HOME)/lib -lestools -L$(EST_HOME)/lib -lestbase -L$(EST_HOME)/lib -leststring   -ltermcap   -ldl  -lm  -lstdc++ 

%.o: %.cc
	g++ -c  -fno-implicit-templates  -O3 -Wall -Wno-non-template-friend -Wno-deprecated           -I$(EST_HOME)/include      $($*_INCLUDES) $($*_DEFINES) $*.cc

%.o: %.c
	g++ -c  -fno-implicit-templates  -O3 -Wall -Wno-non-template-friend -Wno-deprecated           -I$(EST_HOME)/include      $($*_INCLUDES) $($*_DEFINES) $*.c
