1
0
Fork 0
flightgear/3rdparty/hts_engine_API/lib/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

19 lines
373 B
Makefile

CC = cl
CFLAGS = /O2 /Ob2 /Oi /Ot /Oy /GT /GL /TC /I ..\include
LFLAGS = /LTCG
CORES = HTS_audio.obj HTS_engine.obj HTS_gstream.obj HTS_label.obj HTS_misc.obj HTS_model.obj HTS_pstream.obj HTS_sstream.obj HTS_vocoder.obj
all: hts_engine_API.lib
hts_engine_API.lib: $(CORES)
lib $(LFLAGS) /OUT:$@ $(CORES)
.c.obj:
$(CC) $(CFLAGS) /c $<
clean:
del *.lib
del *.obj