]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/blob - processor_audio_sdk_1_00_00_00/build_libs.bat
bbd26cbf9ca22aa4e91694bc112185d37b66f789
[processor-sdk/performance-audio-sr.git] / processor_audio_sdk_1_00_00_00 / 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 pushd paf\pa\asp\ae0
56 gmake clean
57 gmake install
58 popd
60 goto end
62 :arm_only
63 pushd paf\pa\util\c67x_cintrins
64 gmake clean
65 gmake install
66 popd
68 pushd paf\pa\util\simulate_dma
69 gmake clean
70 gmake install
71 popd
73 :end