]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/blob - procsdk_audio_x_xx_xx_xx/build_libs.bat
Update debug probe in K2G target configuration
[processor-sdk/performance-audio-sr.git] / procsdk_audio_x_xx_xx_xx / build_libs.bat
1 rem Assumes setup_env.bat has been called
2 rem Assumes desired target (c66x,a15) has been selected in pa/build/target.mk
4 if "%1"=="" goto end
6 rem
7 rem ARM libraries
8 rem DSP libraries needed PCM1 (+other?)
9 rem
10 pushd paf\pa\asp\com
11 gmake clean
12 gmake install
13 popd
15 pushd paf\pa\dec\pcm1
16 gmake clean
17 gmake install
18 popd
20 pushd paf\pa\dec\com
21 gmake clean
22 gmake install
23 popd
25 pushd paf\pa\asp\std
26 gmake clean
27 gmake install
28 popd
30 pushd paf\pa\sio\acp1
31 gmake clean
32 gmake install
33 popd
35 if "%1"=="ARM" goto arm_only
36 :dsp_only
37 rem
38 rem DSP only libraries
39 rem
40 pushd paf\pa\enc\pce2
41 gmake clean
42 gmake install
43 popd
45 pushd paf\pa\sio\paf
46 gmake clean
47 gmake install
48 popd
50 pushd paf\pa\sio\dcs7
51 gmake clean
52 gmake install
53 popd
55 goto end
57 :arm_only
58 pushd paf\pa\util\c67x_cintrins
59 gmake clean
60 gmake install
61 popd
63 pushd paf\pa\util\simulate_dma
64 gmake clean
65 gmake install
66 popd
68 :end