]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/audio-preprocessing.git/blob - file_demo_bios/da830/components/mhm/package.xs
Resturcture the GIT repository for noise reduction demo:
[processor-sdk/audio-preprocessing.git] / file_demo_bios / da830 / components / mhm / package.xs
1 /******************************************************************************\r
2  * FILE PURPOSE: Defines libarary directory name using getLibs\r
3  ******************************************************************************\r
4  * FILE NAME: package.xs\r
5  *\r
6  * DESCRIPTION: This file defines the library directory name for proper build\r
7  *              in case a different directory name for storing library files \r
8  *              other than "lib" is used. XDC by default assumes that the \r
9  *              library directory is "lib" is not sepcifically indicated by use\r
10  *              the attributes in a file called package.xs  \r
11  *\r
12  * TABS: NONE\r
13  *\r
14  * Copyright (C) 2012, Texas Instruments, Inc.\r
15  *****************************************************************************/\r
16 \r
17 /* "mangle" program build attrs into an appropriate directory name */\r
18 function getLibs (prog)\r
19 {\r
20   var suff = prog.build.target.suffix;\r
21   var lib  = "";\r
22   \r
23   lib += "lib/mhm_c.a"  + suff;\r
24 \r
25   return (lib);\r
26 }\r
27 \r
28 /* nothing past this point */\r