1###########################################################################
2##                                                                       ##
3##  ---------------------------------------------------------------      ##
4##      The HMM-Based Speech Synthesis System (HTS): version 1.1b        ##
5##                        HTS Working Group                              ##
6##                                                                       ##
7##                   Department of Computer Science                      ##
8##                   Nagoya Institute of Technology                      ##
9##                                and                                    ##
10##    Interdisciplinary Graduate School of Science and Engineering       ##
11##                   Tokyo Institute of Technology                       ##
12##                      Copyright (c) 2001-2003                          ##
13##                        All Rights Reserved.                           ##
14##                                                                       ##
15##  Permission is hereby granted, free of charge, to use and             ##
16##  distribute this software and its documentation without               ##
17##  restriction, including without limitation the rights to use,         ##
18##  copy, modify, merge, publish, distribute, sublicense, and/or         ##
19##  sell copies of this work, and to permit persons to whom this         ##
20##  work is furnished to do so, subject to the following conditions:     ##
21##                                                                       ##
22##    1. The code must retain the above copyright notice, this list      ##
23##       of conditions and the following disclaimer.                     ##
24##                                                                       ##
25##    2. Any modifications must be clearly marked as such.               ##
26##                                                                       ##
27##  NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSITITUTE OF TECHNOLOGY,      ##
28##  HTS WORKING GROUP, AND THE CONTRIBUTORS TO THIS WORK DISCLAIM        ##
29##  ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL           ##
30##  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT       ##
31##  SHALL NAGOYA INSTITUTE OF TECHNOLOGY, TOKYO INSITITUTE OF            ##
32##  TECHNOLOGY, HTS WORKING GROUP, NOR THE CONTRIBUTORS BE LIABLE        ##
33##  FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY            ##
34##  DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,      ##
35##  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS       ##
36##  ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR              ##
37##  PERFORMANCE OF THIS SOFTWARE.                                        ##
38##                                                                       ##
39###########################################################################
40##  Nagoya Institute of Technology's HTS Engine                          ##
41##  Integrated in the Festival tree to allow it to be more available     ##
42##  Alan W Black (awb@cs.cmu.edu)
43###########################################################################
44TOP=../../..
45DIRNAME=src/modules/hts_engine
46H = parser.h
47
48H = defaults.h global.h misc.h mlpg.h model.h tree.h vocoder.h \
49    hts21_mlsa_resynthesis.h
50CPPSRCS = hts_engine.cc misc.cc mlpg.cc model.cc tree.cc vocoder.cc \
51    hts21_mlsa_resynthesis.cc
52SRCS = $(CPPSRCS)
53
54OBJS = $(CPPSRCS:.cc=.o)
55
56FILES=Makefile $(SRCS) $(H)
57
58LOCAL_INCLUDES = -I../include
59
60INLIB = $(TOP)/src/lib/libFestival.a
61
62ALL = .buildlib
63
64include $(TOP)/config/common_make_rules
65
66
67