OSDN Git Service

MacGui: Fixed the warning in ChapterTitles for real this time.
[handbrake-jp/handbrake-jp-git.git] / test / Makefile
index 6068484..c4d4787 100644 (file)
@@ -1,23 +1,20 @@
 SYSTEM = $(shell uname -s)
 
-ifeq ($(SYSTEM),CYGWIN_NT-5.1)
-       LIBS = a52 avformat avcodec avutil dvdread faac mp3lame mpeg2 vorbis vorbisenc ogg samplerate x264 xvidcore mp4v2 
-else
-        LIBS = a52 avformat avcodec avutil dvdread dvdcss faac mp3lame mpeg2 vorbis vorbisenc ogg samplerate x264 xvidcore mp4v2 
-endif
+LIBS = a52 mkv avformat avcodec avutil dca dvdread faac mp3lame mpeg2 vorbis \
+          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)
+LDFLAGS += $(LIBS2) -lbz2 -ldl
 
 ../HandBrakeCLI: test.c parsecsv.c $(LIBS2)
        @CMD="$(CC) $(CFLAGS) -o test.o -c test.c"; $$CMD || \
        ( echo "Compile line for $@ was:"; echo $$CMD; false )
-        @CMD="$(CC) $(CFLAGS) -o parsecsv.o -c parsecsv.c"; $$CMD || \
-        ( echo "Compile line for $@ was:"; echo $$CMD; false )
+       @CMD="$(CC) $(CFLAGS) -o parsecsv.o -c parsecsv.c"; $$CMD || \
+       ( echo "Compile line for $@ was:"; echo $$CMD; false )
        @echo "Link HandBrakeCLI"
        @CMD="g++ $(CXXFLAGS) -o ../HandBrakeCLI test.o parsecsv.o $(LDFLAGS) -lz -lpthread"; $$CMD || \
        ( echo "Compile line for $@ was:"; echo $$CMD; false )