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

18 lines
291 B
Makefile

CC = cl
CL = link
CFLAGS = /O2 /Ob2 /Oi /Ot /Oy /GT /GL /TC /I ..\include
LFLAGS = /LTCG
LIBS = ..\lib\hts_engine_API.lib winmm.lib
all: hts_engine.exe
hts_engine.exe : hts_engine.obj
$(CC) $(CFLAGS) /c $(@B).c
$(CL) $(LFLAGS) /OUT:$@ $(LIBS) $(@B).obj
clean:
del *.exe
del *.obj