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