From 57547e8efa0dcf9f7f1750d7e8472f7207d20329 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Wed, 19 Aug 2009 15:14:20 -0500 Subject: [PATCH] renamed synth.c to espeak.c The name was changed because it describes the function of this code more accurately. --- Makefile | 8 ++++---- synth.c => espeak.c | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename synth.c => espeak.c (100%) diff --git a/Makefile b/Makefile index 1665d87..2e70b2c 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/synth.c b/espeak.c similarity index 100% rename from synth.c rename to espeak.c