summaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-09-30 18:12:19 +0000
committersr55 <[email protected]>2008-09-30 18:12:19 +0000
commita533a9e53112490f897c1d3b2f8207b6dd4f007e (patch)
tree37f00a8d078695de16df926f8fef9a1fc2c7cd6d /test/Makefile
parenta1cbb75e9084928b3ebd305c880238e6fd3e0c50 (diff)
CygWin:
- Fixes make building on cygwin (I think - I was seeing some cygwin lib errors before however these seem to have just disappeared. If anyone has a failed build due to this, let me know.) git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1796 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
index c4d4787d7..219d594d8 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -3,11 +3,18 @@ SYSTEM = $(shell uname -s)
LIBS = a52 mkv avformat avcodec avutil dca dvdread faac mp3lame mpeg2 vorbis \
vorbisenc ogg samplerate x264 xvidcore mp4v2 swscale theora faad
+CYGLIBS = zlib bzip2
+
all: ../HandBrakeCLI
CFLAGS += -I../libhb
CXXFLAGS += -I../libhb
LIBS2 = ../libhb/libhb.a $(LIBS:%=../contrib/lib/lib%.a)
+
+ifeq ($(findstring CYGWIN_NT,$(SYSTEM)),CYGWIN_NT)
+ LIBS2 += $(CYGLIBS:%=../contrib/lib/libz.a) $(CYGLIBS:%=../contrib/lib/libbz2.a)
+endif
+
LDFLAGS += $(LIBS2) -lbz2 -ldl
../HandBrakeCLI: test.c parsecsv.c $(LIBS2)