Browse Source

Makefile: pull out common files into a variable.

Makes it easier to see where speak_SOURCES and libspeak_SOURCES differ.
master
Mesar Hameed 13 years ago
parent
commit
e4a0ae70f3
1 changed files with 7 additions and 7 deletions
  1. 7
    7
      src/Makefile

+ 7
- 7
src/Makefile View File

@@ -70,16 +70,16 @@ endif
endif
endif

speak_SOURCES = speak.cpp compiledict.cpp dictionary.cpp intonation.cpp \
readclause.cpp setlengths.cpp numbers.cpp synth_mbrola.cpp \
synthdata.cpp synthesize.cpp translate.cpp mbrowrap.cpp \
tr_languages.cpp voices.cpp wavegen.cpp phonemelist.cpp klatt.cpp sonic.cpp

libespeak_SOURCES = speak_lib.cpp compiledict.cpp dictionary.cpp intonation.cpp \
common_SOURCES = compiledict.cpp dictionary.cpp intonation.cpp \
readclause.cpp setlengths.cpp numbers.cpp synth_mbrola.cpp \
synthdata.cpp synthesize.cpp translate.cpp mbrowrap.cpp \
tr_languages.cpp voices.cpp wavegen.cpp phonemelist.cpp \
espeak_command.cpp event.cpp fifo.cpp $(WAVE) debug.cpp klatt.cpp sonic.cpp
klatt.cpp sonic.cpp

speak_SOURCES = speak.cpp $(common_SOURCES)

libespeak_SOURCES = speak_lib.cpp $(common_SOURCES) \
espeak_command.cpp event.cpp fifo.cpp $(WAVE) debug.cpp

SRCS1=$(speak_SOURCES)
OBJS1=$(patsubst %.cpp,%.o,$(SRCS1))

Loading…
Cancel
Save