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