summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2008-06-14 16:29:03 +0000
committerjstebbins <[email protected]>2008-06-14 16:29:03 +0000
commit57898d286baca1d4bf6f09c0b2583a4c75323fbf (patch)
treeccd9b5f6e7c79a984759e4cbe8bf6bed002a7df7 /test
parent3c3dd120dc58da16f237887f29d1251489a1af92 (diff)
fix building with make on linux. missing bz2 and faad
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1511 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r--test/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 809578e30..dc0ac3c08 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,14 +1,14 @@
SYSTEM = $(shell uname -s)
LIBS = a52 mkv avformat avcodec avutil dca dvdread faac mp3lame mpeg2 vorbis \
- vorbisenc ogg samplerate x264 xvidcore mp4v2 swscale theora
+ vorbisenc ogg samplerate x264 xvidcore mp4v2 swscale theora faad
all: ../HandBrakeCLI
CFLAGS += -I../libhb
CXXFLAGS += -I../libhb
LIBS2 = ../libhb/libhb.a $(LIBS:%=../contrib/lib/lib%.a)
-LDFLAGS += $(LIBS2) -ldl
+LDFLAGS += $(LIBS2) -lbz2 -ldl
../HandBrakeCLI: test.c parsecsv.c $(LIBS2)
@CMD="$(CC) $(CFLAGS) -o test.o -c test.c"; $$CMD || \