blob: e84c8a79c3bed86391bdde0f7fc2b4a7820f583e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Makefile for 'espeakedit' program
SRCS= compiledata.cpp compiledict.cpp debug.cpp dictionary.cpp espeak_command.cpp \
espeakedit.cpp event.cpp extras.cpp fifo.cpp formantdlg.cpp intonation.cpp \
klatt.cpp mbrowrap.cpp menus.cpp numbers.cpp options.cpp phonemelist.cpp \
prosodydisplay.cpp readclause.cpp setlengths.cpp speak_lib.cpp spect.cpp \
spectdisplay.cpp spectseq.cpp synthdata.cpp synthesize.cpp synth_mbrola.cpp \
translate.cpp transldlg.cpp tr_languages.cpp voicedlg.cpp voices.cpp vowelchart.cpp \
wave.cpp wavegen.cpp sonic.cpp
OBJS=$(patsubst %.cpp,%.o,$(SRCS))
all: espeakedit
.cpp.o:
$(CXX) @CPPFLAGS@ -I. -c -fno-exceptions $<
espeakedit: $(OBJS)
$(CXX) -o $@ $(OBJS) @LIBS@
clean:
rm -f *.o *~
distclean: clean
rm -f espeakedit
|