1
0
Fork 0
flightgear/3rdparty/flite_hts_engine/bin/Makefile.mak
James Turner 7b2d710cd0 Add hts_engine 1.08 and flite_hts 1.05 code.
- Not compiled by default, nor hooked up to anything yet.
- Both libraries licensed under modified BSD license.
- Added top-level CMake file for both, to create a plain static
  library for each.
2014-03-10 09:32:43 +00:00

21 lines
584 B
Makefile

CC = cl
CL = link
CFLAGS = /I C:\hts_engine_API\include /I ..\include /I ..\flite\include \
/I ..\flite\lang\cmu_us_kal /I ..\flite\lang\cmulex /I ..\flite\lang\usenglish \
/D "FLITE_PLUS_HTS_ENGINE" /D "NO_UNION_INITIALIZATION" \
/O2 /Ob2 /Oi /Ot /Oy /GT /TC /GL
LFLAGS = /LTCG
LIBS = C:\hts_engine_API\lib\hts_engine_API.lib ..\lib\flite_hts_engine.lib winmm.lib
all: flite_hts_engine.exe
flite_hts_engine.exe : flite_hts_engine.obj
$(CC) $(CFLAGS) /c $(@B).c
$(CL) $(LFLAGS) /OUT:$@ $(LIBS) $(@B).obj
clean:
del *.exe
del *.obj