renamed synth.c to espeak.c

The name was changed because it describes the function of this code more
accurately.
This commit is contained in:
William Hubbs 2009-08-19 15:14:20 -05:00
commit 57547e8efa
2 changed files with 4 additions and 4 deletions

View file

@ -11,11 +11,11 @@ ALSA_SRCS = alsa.c
ESPEAK_SRCS = espeak_sound.c
SRCS = \
cli.c \
espeak.c \
espeakup.c \
queue.c \
signal.c \
softsynth.c \
synth.c
softsynth.c
ifeq ($(AUDIO),alsa)
SRCS += $(ALSA_SRCS)
@ -44,14 +44,14 @@ espeakup: $(OBJS)
cli.o: cli.c espeakup.h
espeak.o: espeak.c espeakup.h queue.h
espeakup.o: espeakup.c espeakup.h queue.h
queue.o: queue.c queue.h
softsynth.o: softsynth.c espeakup.h queue.h
synth.o: synth.c espeakup.h queue.h
alsa.o: alsa.c espeakup.h
espeak_sound.o: espeak_sound.c espeakup.h

View file