]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/blobdiff - scripts/build_aac.bat
Merged PASDK 1.2.4 changes. Fixed following bugs:
[processor-sdk/performance-audio-sr.git] / scripts / build_aac.bat
diff --git a/scripts/build_aac.bat b/scripts/build_aac.bat
deleted file mode 100644 (file)
index 5682d92..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-@echo off
-
-:: *************************************************************************
-::  FILE           : build_aac.bat
-::  DESCRIPTION    :
-::
-::     Builds package for AAC component library.
-::     Assumes setup_env.bat has been called.
-::
-:: *************************************************************************
-
-:: %1: Build lirary or test application (lib, testapp)
-@echo Executing:  %~fn0 %1
-
-if "%PAROOT_DIR%" == "" set PAROOT_DIR=%~dp0..\
-
-:: Set PASDK local root directory
-set PASDK_LROOT_DIR=%PAROOT_DIR%pasrc
-:: Set PAF root directory
-set PAF_ROOT_DIR=%PASDK_LROOT_DIR%\paf
-
-
-pushd %PAF_ROOT_DIR%\pa\build
-sed -i -e "s/export ARCH   = c66x/export ARCH   = a15/g" target.mk
-popd
-
-
-SET AAC_SOURCE_PATH=..\3p-ip-fraunhofer\pa\dec\aac
-
-if /I "%1" == "lib" goto build_aac_lib
-if /I "%1" == "testapp" goto build_aac_testapp
-@echo "Invalid argument"
-goto end
-
-:build_aac_lib
-pushd %AAC_SOURCE_PATH%
-gmake clean
-gmake install
-popd
-goto end
-
-:build_aac_testapp
-
-pushd %PAF_ROOT_DIR%\pa\util\c67x_cintrins
-gmake clean
-gmake install
-popd
-
-pushd %PAF_ROOT_DIR%\pa\util\c66x_cintrins
-gmake clean
-gmake install
-popd
-
-pushd %PAF_ROOT_DIR%\pa\asp\std
-gmake clean
-gmake install
-popd
-
-pushd %PAF_ROOT_DIR%\pa\dec\com
-gmake clean
-gmake install
-popd
-
-pushd %PAF_ROOT_DIR%\pa\asp\com
-gmake clean
-gmake install
-popd
-
-pushd %AAC_SOURCE_PATH%\test\a15
-gmake clean
-gmake 
-popd
-goto end
-
-:end
-set AAC_SOURCE_PATH=