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