blob: cdce2c1dcc7d68f44f293a0255429e7deb4d7165 [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# target6
18# available: pc, v4(armv4), v5(armv5), v5x(armv5 xscale), v6(armv6), v7(cortex-a8 neon)
19VOTT:= v7
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.
29# e.g. -DVISUALON, macro VISUALON defined for your module
30VOMM:= -DARMV5E -DARMV7Neon -DARM_INASM -DARMV5_INASM
31
32
33
34# please specify the name of your module
35VOTARGET:=libvoAACEncv7
36
37
38# please modify here to be sure to see the g1.mk
39include ../../../../../Tools/eclair.mk
40
41# dependent libraries.
42VODEPLIBS:=#-ldl -lstdc++
43
44# module source
45# please modify here to be sure to see the ms.mk which specifies all source info of your module
46include ../../ms.mk
47
48
49# please specify where is the voRelease on your PC, relative path is suggested
50VORELDIR:=../../../../../../Release
51
52
53# please modify here to be sure to see the doit.mk
54include ../../../../../Tools/doit.mk
55