Browse Source

Change makefile to avoid "else ifeq". Some versions of "make" don't accept it.


git-svn-id: https://espeak.svn.sourceforge.net/svnroot/espeak/trunk@171 d46cf337-b52f-0410-862d-fd96e6ae7743
master
jonsd 17 years ago
parent
commit
42b19ae2c8
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      src/Makefile

+ 3
- 1
src/Makefile View File

@@ -32,13 +32,15 @@ ifeq ($(AUDIO),pulseaudio)
WAVE=wave_pulse.cpp
LIB_AUDIO=-lpulse
USE_AUDIO=-DUSE_PULSEAUDIO
else ifeq ($(AUDIO),portaudio)
else
ifeq ($(AUDIO),portaudio)
WAVE=wave.cpp
LIB_AUDIO=-lportaudio
USE_AUDIO=-DUSE_PORTAUDIO
else
WAVE=wave.cpp
endif
endif

speak_SOURCES = speak.cpp compiledict.cpp dictionary.cpp intonation.cpp \
readclause.cpp setlengths.cpp numbers.cpp synth_mbrola.cpp \

Loading…
Cancel
Save