]> git.mxchange.org Git - flightgear.git/blob - 3rdparty/hts_engine_API/Makefile.mak
Merge commit 'refs/merge-requests/1577' of git://gitorious.org/fg/flightgear into...
[flightgear.git] / 3rdparty / hts_engine_API / Makefile.mak
1
2 INSTALLDIR = C:\hts_engine_API
3
4 all:
5         cd lib
6         nmake /f Makefile.mak
7         cd ..
8         cd bin
9         nmake /f Makefile.mak
10         cd ..
11
12 clean:
13         cd lib
14         nmake /f Makefile.mak clean
15         cd ..
16         cd bin
17         nmake /f Makefile.mak clean
18         cd ..
19
20 install::
21         @if not exist "$(INSTALLDIR)\lib" mkdir "$(INSTALLDIR)\lib"
22         cd lib
23         copy *.lib $(INSTALLDIR)\lib
24         cd ..
25         @if not exist "$(INSTALLDIR)\bin" mkdir "$(INSTALLDIR)\bin"
26         cd bin
27         copy *.exe $(INSTALLDIR)\bin
28         cd ..
29         @if not exist "$(INSTALLDIR)\include" mkdir "$(INSTALLDIR)\include"
30         cd include
31         copy *.h $(INSTALLDIR)\include
32         cd ..