diff options
author | Koen Kooi <koen@openembedded.org> | 2008-07-31 13:52:50 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-07-31 13:52:50 +0000 |
commit | 2e87f4b4156632fe1f868281b11d46ec890efcc7 (patch) | |
tree | df705c96a10123a970221141ee9428c50528f9b5 /packages/dsplink/files | |
parent | 03912c8ebd075977a9256ff22b95419fe5ab5e5d (diff) |
codec-engine: stop installing ticel-config
Diffstat (limited to 'packages/dsplink/files')
-rw-r--r-- | packages/dsplink/files/ticel-config | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/packages/dsplink/files/ticel-config b/packages/dsplink/files/ticel-config deleted file mode 100644 index 75ebddae75..0000000000 --- a/packages/dsplink/files/ticel-config +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -LIBS="" -for lib in \ - TraceUtil.a \ - bioslog.a \ - video.a \ - audio.a \ - speech.a \ - ce.a \ - Algorithm_noOS.a \ - alg.a \ - osal_linux_470.a \ - dman3Cfg.a \ - acpy3.a \ - cmem.a \ - dsplink.lib \ - XdmUtils.a \ - gt.a -do - LIBS="${LIBS} SEDME_STAGINGLIBDIR/${lib}" -done - -CFLAGS="SEDME_CFLAGS" - -usage() -{ - echo "Usage : $0 [--cflags] [--libs]" - exit 1 -} - -test "$#" = 0 && usage - -OUT="" -while test "$#" -gt 0; -do - case "$1" in - "--cflags") - OUT="${OUT} ${CFLAGS}" - ;; - "--libs") - OUT="${OUT} ${LIBDIRS} ${LIBS}" - ;; - *) - usage - ;; - esac - - shift -done - -echo "${OUT}" -exit 0 |