Browse Source

build: generate the espeak-data-local directory (not completely working yet)

master
Reece Dunn 15 years ago
parent
commit
b04fab1a6d
2 changed files with 17 additions and 6 deletions
  1. 1
    0
      .gitignore
  2. 16
    6
      Makefile

+ 1
- 0
.gitignore View File

# intermediate build output: # intermediate build output:


*.o *.o
espeak-data-local/


# libraries # libraries



+ 16
- 6
Makefile View File

PLATFORM=big_endian PLATFORM=big_endian


all: espeak espeakedit espeak-phoneme-data
##### standard build actions:

all: espeak espeakedit espeak-data-local

clean:
cd src && rm -f *.o *~ && cd ..

distclean: clean
cd src && rm -f libespeak.a libespeak.so.* speak espeak espeakedit && cd ..
cd platforms/${PLATFORM} && rm -f espeak-phoneme-data && cd ../..
rm -rf espeak-data-local

##### build targets:


espeak: espeak:
cd src && make && cd .. cd src && make && cd ..
espeak-phoneme-data: espeak-phoneme-data:
cd platforms/${PLATFORM} && make && cd ../.. cd platforms/${PLATFORM} && make && cd ../..


clean:
cd src && rm -f *.o *~ && cd ..

distclean: clean
cd src && rm -f libespeak.a libespeak.so.* speak espeak espeakedit && cd ..
espeak-data-local: espeak-phoneme-data
cp -a espeak-data espeak-data-local
platforms/big_endian/espeak-phoneme-data espeak-data-local espeak-data-local platforms/${PLATFORM}/phondata-manifest



Loading…
Cancel
Save