summaryrefslogtreecommitdiffstats
path: root/core/Jamfile
blob: 949e2438843c5754244f51a2b0e4e87507068d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# $Id: Jamfile,v 1.6 2004/03/08 11:32:48 titer Exp $
#
# This file is part of the HandBrake source code.
# Homepage: <http://handbrake.m0k.org/>.
# It may be used under the terms of the GNU General Public License.

SubDir TOP core ;

SOURCES_HBCORE =
Ac3Dec.c
AviMux.c
DVDRead.c
FaacEnc.c
FfmpegEnc.c
Fifo.c
HandBrake.c
LpcmDec.c
MadDec.c
Mp3Enc.c
Mp4Mux.c
Mpeg2Dec.c
OgmMux.c
Scale.c
Scan.c
Thread.c
Utils.c
VorbisEnc.c
Work.c
X264Enc.c
XvidEnc.c ;

ObjectCcFlags $(SOURCES_HBCORE) : 
    -I$(TOP)/contrib/liba52
    -I$(TOP)/contrib/libavcodec
    -I$(TOP)/contrib/libdvdplay
    -I$(TOP)/contrib/libdvdread
    -I$(TOP)/contrib/libfaac
    -I$(TOP)/contrib/libmp3lame
    -I$(TOP)/contrib/libmp4v2
    -I$(TOP)/contrib/libmpeg2
    -I$(TOP)/contrib/libogg
    -I$(TOP)/contrib/libvorbis
    -I$(TOP)/contrib/libx264
    -I$(TOP)/contrib/libxvidcore
    -g -Wall ;

Library libhb.a : $(SOURCES_HBCORE) ;