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

32 lines
555 B
Makefile

INSTALLDIR = C:\flite_hts_engine
all:
cd lib
nmake /f Makefile.mak
cd ..
cd bin
nmake /f Makefile.mak
cd ..
clean:
cd lib
nmake /f Makefile.mak clean
cd ..
cd bin
nmake /f Makefile.mak clean
cd ..
install::
@if not exist "$(INSTALLDIR)\lib" mkdir "$(INSTALLDIR)\lib"
cd lib
copy *.lib $(INSTALLDIR)\lib
cd ..
@if not exist "$(INSTALLDIR)\bin" mkdir "$(INSTALLDIR)\bin"
cd bin
copy *.exe $(INSTALLDIR)\bin
cd ..
@if not exist "$(INSTALLDIR)\include" mkdir "$(INSTALLDIR)\include"
cd include
copy *.h $(INSTALLDIR)\include
cd ..