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