~ubuntu-branches/ubuntu/saucy/vo-aacenc/saucy

« back to all changes in this revision

Viewing changes to aacenc/SampleCode/eclair/Makefile

  • Committer: Package Import Robot
  • Author(s): Andres Mejia
  • Date: 2012-03-18 13:23:11 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120318132311-m3d691ld0cv0tns8
Tags: 0.1.2-1
* New upstream release.
* Add myself to uploaders field.
* Bump to Standards-Version 3.9.3.
* Remove symbols files.
* Include static library in dev package.
* Show compiler flags during build.
* Make dpkg-source options default for packaging.
* Add lintian override for package-needs-versioned-debhelper-build-depends.
* Change Priority of packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#/*
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)
19
 
VOTT:= v7
20
 
 
21
 
 
22
 
# module type
23
 
# please specify the type of your module: lib or exe
24
 
VOMT:= exe
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
30
 
VOMM:= #ARMV5E
31
 
 
32
 
 
33
 
 
34
 
# please specify the name of your module
35
 
VOTARGET:= voAACEncTestv7
36
 
 
37
 
 
38
 
# please modify here to be sure to see the g1.mk
39
 
include ../../../../Tools/eclair.mk
40
 
 
41
 
# dependent libraries.
42
 
VODEPLIBS:=-ldl
43
 
 
44
 
# module source
45
 
# please modify here to be sure to see the ms.mk which specifies all source info of your module
46
 
include ../ms.mk
47
 
 
48
 
 
49
 
# please specify where is the voRelease on your PC, relative path is suggested
50
 
VORELDIR:=../../../../../Release/
51
 
 
52
 
 
53
 
# please modify here to be sure to see the doit.mk
54
 
include ../../../../Tools/doit.mk
55