first commit
This commit is contained in:
32
3rdparty/hts_engine_API/Makefile.mak
vendored
Normal file
32
3rdparty/hts_engine_API/Makefile.mak
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
INSTALLDIR = C:\hts_engine_API
|
||||
|
||||
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 ..
|
||||
Reference in New Issue
Block a user