blob: 58fda29bb3a0bce1c2129202b128737c94c87c0b [file] [log] [blame]
James Dong17299ab2010-05-14 15:45:22 -07001#/*
2# ** Copyright 2003-2010, VisualOn, Inc.
3# **
4# ** Licensed under the Apache License, Version 2.0 (the "License");
5# ** you may not use this file except in compliance with the License.
6# ** You may obtain a copy of the License at
7# **
8# ** http://www.apache.org/licenses/LICENSE-2.0
9# **
10# ** Unless required by applicable law or agreed to in writing, software
11# ** distributed under the License is distributed on an "AS IS" BASIS,
12# ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# ** See the License for the specific language governing permissions and
14# ** limitations under the License.
15# */
16
17# target type
18# available: pc, v4(armv4), v5(armv5), v5x(armv5 xscale), v6(armv6), v7(cortex-a8 neon)
19VOTT:= v5
20
21
22# module type
23# please specify the type of your module: lib or exe
24VOMT:= lib
25
26
27# module macros
28# please append the additional macro definitions here for your module if necessary.
29ifeq ($(VOTT), v5)
30VOMM:=-DARM -DASM_OPT
31endif
32
33# please specify the name of your module
34VOTARGET:= libvoAMRWBEncv5
35
36
37# please modify here to be sure to see the g1.mk
38include ../../../../../Tools/eclair.mk
39
40# dependent libraries.
41VODEPLIBS:=-ldl -lstdc++ -lcutils
42
43# module source
44# please modify here to be sure to see the ms.mk which specifies all source info of your module
45include ../ms.mk
46
47
48# please specify where is the voRelease on your PC, relative path is suggested
49VORELDIR:=../../../../../../Release
50
51# please modify here to be sure to see the doit.mk
52include ../../../../../Tools/doit.mk
53