streamers-build / THIRDPARTY-LIBS / Makefile @ 0882652d
History | View | Annotate | Download (1.74 KB)
1 |
THIRDPARTYLIBS = $(shell pwd) |
---|---|
2 |
#NAPA-LIBS = NAPA-BASELIBS/monl/libmon.a NAPA-BASELIBS/ml/libml.a |
3 |
#GRAPES-LIBS = GRAPES/src/libgrapes.a |
4 |
#LIBS = $(GRAPES-LIBS) $(NAPA-LIBS) |
5 |
|
6 |
.PHONY: GRAPES-build NAPA-build x264-build ffmpeg-build |
7 |
|
8 |
all: GRAPES-build NAPA-build |
9 |
|
10 |
x264/.git: |
11 |
cd .. && git submodule update --init $(shell dirname $(THIRDPARTYLIBS)/$@) |
12 |
cd x264 && ./configure --prefix=$(THIRDPARTYLIBS)/x264-install/ || { echo "Error configuring x264" && exit 1; } |
13 |
|
14 |
x264-build: x264/.git |
15 |
$(MAKE) -C x264 || { echo "Error compiling x264" && exit 1; } |
16 |
|
17 |
x264-install: x264-build |
18 |
$(MAKE) -C x264 install || { echo "Error installing x264" && exit 1; } |
19 |
|
20 |
ffmpeg/.git: x264-install |
21 |
cd .. && git submodule update --init $(shell dirname $(THIRDPARTYLIBS)/$@) |
22 |
cd ffmpeg && ./configure --enable-libx264 --enable-gpl --enable-pthreads --extra-cflags=-I$(THIRDPARTYLIBS)/x264-install/include --extra-ldflags=-L$(THIRDPARTYLIBS)/x264-install/lib --prefix=$(THIRDPARTYLIBS)/ffmpeg-install || { echo "Error configuring ffmpeg" && exit 1; } |
23 |
#in case x264 is not reqired (do we need the encoding?): ./configure --enable-gpl --enable-pthreads --prefix=$BASEDIR/ffmpeg-install |
24 |
|
25 |
ffmpeg-build: ffmpeg/.git |
26 |
$(MAKE) -C ffmpeg || { echo "Error compiling ffmpeg" && exit 1; } |
27 |
|
28 |
ffmpeg-install: ffmpeg-build |
29 |
$(MAKE) -C ffmpeg install || { echo "Error installing ffmpeg" && exit 1; } |
30 |
|
31 |
GRAPES/.git: ffmpeg-install |
32 |
cd .. && git submodule update --init $(shell dirname $(THIRDPARTYLIBS)/$@) |
33 |
|
34 |
GRAPES-build: GRAPES/.git |
35 |
FFDIR=$(THIRDPARTYLIBS)/ffmpeg $(MAKE) -C GRAPES || { echo "Error compiling GRAPES" && exit 1; } |
36 |
|
37 |
NAPA-BASELIBS/.git: |
38 |
cd .. && git submodule update --init $(shell dirname $(THIRDPARTYLIBS)/$@) |
39 |
|
40 |
NAPA-build: NAPA-BASELIBS/.git |
41 |
cd NAPA-BASELIBS && ./build_all.sh -q |
42 |
|
43 |
clean: |
44 |
$(MAKE) -C GRAPES clean |