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