Skip to content

Commit

Permalink
initial espeak 1.51-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
davidweenink committed Dec 9, 2021
1 parent e7fc43b commit b0b4d9f
Show file tree
Hide file tree
Showing 70 changed files with 300,823 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ all: all-external all-self
LPC/libLPC.a dwtools/libdwtools.a \
fon/libfon.a stat/libstat.a dwsys/libdwsys.a \
sys/libsys.a melder/libmelder.a kar/libkar.a \
external/espeak/libespeak.a \
espeak-work/espeak-ng-work/libespeak.a \
external/portaudio/libportaudio.a \
external/flac/libflac.a external/mp3/libmp3.a \
external/glpk/libglpk.a \
Expand All @@ -37,7 +37,7 @@ all-external:
$(MAKE) -C external/mp3
$(MAKE) -C external/flac
$(MAKE) -C external/portaudio
$(MAKE) -C external/espeak
$(MAKE) -C espeak-work/espeak-ng-work
$(MAKE) -C external/vorbis
$(MAKE) -C external/opusfile

Expand Down Expand Up @@ -66,7 +66,7 @@ clean-external:
$(MAKE) -C external/mp3 clean
$(MAKE) -C external/flac clean
$(MAKE) -C external/portaudio clean
$(MAKE) -C external/espeak clean
$(MAKE) -C espeak-work/espeak-ng-work clean
$(MAKE) -C external/vorbis clean
$(MAKE) -C external/opusfile clean

Expand Down
32 changes: 32 additions & 0 deletions espeak-work/espeak-ng-work/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# makefile for libespeak

include ../../makefile.defs

CPPFLAGS = -I ../../kar -I ../../melder -I ../../dwtools -I ../../sys -I ../../dwsys -I ../../stat

OBJECTS = categories.o compiledata.o compiledict.o \
dictionary.o \
encoding.o error.o espeak_api.o \
intonation.o klatt.o \
numbers.o phonemelist.o proplist.o readclause.o setlengths.o speech.o \
synthdata.o synthesize.o \
synth_mbrola.o tr_languages.o mnemonics.o translate.o voices.o wavegen.o \
create_espeak_ng_FileInMemoryManager.o create_espeak_ng_FileInMemorySet.o \
espeak_io.o

.PHONY: all clean

all: libespeak.a

clean:
$(RM) $(OBJECTS)
$(RM) libespeak.a

libespeak.a: $(OBJECTS)
touch libespeak.a
rm libespeak.a
$(AR) cq libespeak.a $(OBJECTS)
$(RANLIB) libespeak.a

$(OBJECTS): *.h ../../kar/*.h ../../melder/*.h ../../sys/*.h ../../dwsys/*.h ../../stat/*.h

3 changes: 3 additions & 0 deletions espeak-work/espeak-ng-work/StdAfx.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// This is a dummy file.
// A file of this name is needed on Windows

Loading

0 comments on commit b0b4d9f

Please sign in to comment.