]> git.sesse.net Git - x264/blob - Makefile
Timecode input/output
[x264] / Makefile
1 # Makefile
2
3 include config.mak
4
5 all: default
6
7 SRCS = common/mc.c common/predict.c common/pixel.c common/macroblock.c \
8        common/frame.c common/dct.c common/cpu.c common/cabac.c \
9        common/common.c common/mdate.c common/set.c \
10        common/quant.c common/vlc.c \
11        encoder/analyse.c encoder/me.c encoder/ratecontrol.c \
12        encoder/set.c encoder/macroblock.c encoder/cabac.c \
13        encoder/cavlc.c encoder/encoder.c encoder/lookahead.c
14
15 SRCCLI = x264.c input/timecode.c \
16          input/yuv.c input/y4m.c output/raw.c \
17          output/matroska.c output/matroska_ebml.c \
18          output/flv.c output/flv_bytestream.c
19
20 SRCSO =
21
22 CONFIG := $(shell cat config.h)
23
24 # Optional muxer module sources
25 ifneq ($(findstring AVS_INPUT, $(CONFIG)),)
26 SRCCLI += input/avs.c
27 endif
28
29 ifneq ($(findstring HAVE_PTHREAD, $(CONFIG)),)
30 SRCCLI += input/thread.c
31 endif
32
33 ifneq ($(findstring LAVF_INPUT, $(CONFIG)),)
34 SRCCLI += input/lavf.c
35 endif
36
37 ifneq ($(findstring FFMS_INPUT, $(CONFIG)),)
38 SRCCLI += input/ffms.c
39 endif
40
41 ifneq ($(findstring MP4_OUTPUT, $(CONFIG)),)
42 SRCCLI += output/mp4.c
43 endif
44
45 # Visualization sources
46 ifeq ($(VIS),yes)
47 SRCS   += common/visualize.c common/display-x11.c
48 endif
49
50 # MMX/SSE optims
51 ifneq ($(AS),)
52 X86SRC0 = cabac-a.asm dct-a.asm deblock-a.asm mc-a.asm mc-a2.asm \
53           pixel-a.asm predict-a.asm quant-a.asm sad-a.asm \
54           cpu-a.asm dct-32.asm
55 X86SRC = $(X86SRC0:%=common/x86/%)
56
57 ifeq ($(ARCH),X86)
58 ARCH_X86 = yes
59 ASMSRC   = $(X86SRC) common/x86/pixel-32.asm
60 endif
61
62 ifeq ($(ARCH),X86_64)
63 ARCH_X86 = yes
64 ASMSRC   = $(X86SRC:-32.asm=-64.asm)
65 ASFLAGS += -DARCH_X86_64
66 endif
67
68 ifdef ARCH_X86
69 ASFLAGS += -Icommon/x86/
70 SRCS   += common/x86/mc-c.c common/x86/predict-c.c
71 OBJASM  = $(ASMSRC:%.asm=%.o)
72 $(OBJASM): common/x86/x86inc.asm common/x86/x86util.asm
73 checkasm: tools/checkasm-a.o
74 endif
75 endif
76
77 # AltiVec optims
78 ifeq ($(ARCH),PPC)
79 ifneq ($(AS),)
80 SRCS += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \
81         common/ppc/quant.c common/ppc/deblock.c \
82         common/ppc/predict.c
83 endif
84 endif
85
86 # NEON optims
87 ifeq ($(ARCH),ARM)
88 ifneq ($(AS),)
89 ASMSRC += common/arm/cpu-a.S common/arm/pixel-a.S common/arm/mc-a.S \
90           common/arm/dct-a.S common/arm/quant-a.S common/arm/deblock-a.S \
91           common/arm/predict-a.S
92 SRCS   += common/arm/mc-c.c common/arm/predict-c.c
93 OBJASM  = $(ASMSRC:%.S=%.o)
94 endif
95 endif
96
97 # VIS optims
98 ifeq ($(ARCH),UltraSparc)
99 ASMSRC += common/sparc/pixel.asm
100 OBJASM  = $(ASMSRC:%.asm=%.o)
101 endif
102
103 ifneq ($(HAVE_GETOPT_LONG),1)
104 SRCS += extras/getopt.c
105 endif
106
107 ifneq ($(SONAME),)
108 ifeq ($(SYS),MINGW)
109 SRCSO += x264dll.c
110 endif
111 endif
112
113 OBJS = $(SRCS:%.c=%.o)
114 OBJCLI = $(SRCCLI:%.c=%.o)
115 OBJSO = $(SRCSO:%.c=%.o)
116 DEP  = depend
117
118 .PHONY: all default fprofiled clean distclean install uninstall dox test testclean
119
120 default: $(DEP) x264$(EXE)
121
122 libx264.a: .depend $(OBJS) $(OBJASM)
123         $(AR) rc libx264.a $(OBJS) $(OBJASM)
124         $(RANLIB) libx264.a
125
126 $(SONAME): .depend $(OBJS) $(OBJASM) $(OBJSO)
127         $(CC) -shared -o $@ $(OBJS) $(OBJASM) $(OBJSO) $(SOFLAGS) $(LDFLAGS)
128
129 x264$(EXE): $(OBJCLI) libx264.a
130         $(CC) -o $@ $+ $(LDFLAGS) $(LDFLAGSCLI)
131
132 checkasm: tools/checkasm.o libx264.a
133         $(CC) -o $@ $+ $(LDFLAGS)
134
135 %.o: %.asm
136         $(AS) $(ASFLAGS) -o $@ $<
137         -@ $(STRIP) -x $@ # delete local/anonymous symbols, so they don't show up in oprofile
138
139 %.o: %.S
140         $(AS) $(ASFLAGS) -o $@ $<
141         -@ $(STRIP) -x $@ # delete local/anonymous symbols, so they don't show up in oprofile
142
143 .depend: config.mak
144         @rm -f .depend
145         @$(foreach SRC, $(SRCS) $(SRCCLI) $(SRCSO), $(CC) $(CFLAGS) $(SRC) -MT $(SRC:%.c=%.o) -MM -g0 1>> .depend;)
146
147 config.mak:
148         ./configure
149
150 depend: .depend
151 ifneq ($(wildcard .depend),)
152 include .depend
153 endif
154
155 SRC2 = $(SRCS) $(SRCCLI)
156 # These should cover most of the important codepaths
157 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac --direct temporal --ssim --no-weightb
158 OPT1 = --crf 16 -b2 -m3 -r3 --me hex --no-8x8dct --direct spatial --no-dct-decimate -t0  --slice-max-mbs 50
159 OPT2 = --crf 26 -b4 -m5 -r2 --me hex --cqm jvt --nr 100 --psnr --no-mixed-refs --b-adapt 2 --slice-max-size 1500
160 OPT3 = --crf 18 -b3 -m9 -r5 --me umh -t1 -A all --b-pyramid normal --direct auto --no-fast-pskip --no-mbtree
161 OPT4 = --crf 22 -b3 -m7 -r4 --me esa -t2 -A all --psy-rd 1.0:1.0 --slices 4
162 OPT5 = --frames 50 --crf 24 -b3 -m10 -r3 --me tesa -t2
163 OPT6 = --frames 50 -q0 -m9 -r2 --me hex -Aall
164 OPT7 = --frames 50 -q0 -m2 -r1 --me hex --no-cabac
165
166 ifeq (,$(VIDS))
167 fprofiled:
168         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
169         @echo 'where infiles are anything that x264 understands,'
170         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
171 else
172 fprofiled:
173         $(MAKE) clean
174         mv config.mak config.mak2
175         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
176         $(MAKE) x264$(EXE)
177         $(foreach V, $(VIDS), $(foreach I, 0 1 2 3 4 5 6 7, ./x264$(EXE) $(OPT$I) --threads 1 $(V) -o $(DEVNULL) ;))
178         rm -f $(SRC2:%.c=%.o)
179         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
180         $(MAKE)
181         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
182         mv config.mak2 config.mak
183 endif
184
185 clean:
186         rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(OBJSO) $(SONAME) *.a x264 x264.exe .depend TAGS
187         rm -f checkasm checkasm.exe tools/checkasm.o tools/checkasm-a.o
188         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
189         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
190
191 distclean: clean
192         rm -f config.mak config.h config.log x264.pc
193         rm -rf test/
194
195 install: x264$(EXE) $(SONAME)
196         install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
197         install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
198         install -m 644 x264.h $(DESTDIR)$(includedir)
199         install -m 644 libx264.a $(DESTDIR)$(libdir)
200         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
201         install x264$(EXE) $(DESTDIR)$(bindir)
202         $(RANLIB) $(DESTDIR)$(libdir)/libx264.a
203 ifeq ($(SYS),MINGW)
204         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(bindir))
205 else
206         $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
207         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir))
208 endif
209         $(if $(IMPLIBNAME), install -m 644 $(IMPLIBNAME) $(DESTDIR)$(libdir))
210
211 uninstall:
212         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
213         rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc
214         $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
215
216 etags: TAGS
217
218 TAGS:
219         etags $(SRCS)
220
221 dox:
222         doxygen Doxyfile
223
224 ifeq (,$(VIDS))
225 test:
226         @echo 'usage: make test VIDS="infile1 infile2 ..."'
227         @echo 'where infiles are anything that x264 understands,'
228         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
229 else
230 test:
231         perl tools/regression-test.pl --version=head,current --options='$(OPT0)' --options='$(OPT1)' --options='$(OPT2)' $(VIDS:%=--input=%)
232 endif
233
234 testclean:
235         rm -f test/*.log test/*.264
236         $(foreach DIR, $(wildcard test/x264-r*/), cd $(DIR) ; make clean ; cd ../.. ;)