]> git.sesse.net Git - x264/blob - Makefile
skip intra pred+dct+quant in cases where it's redundant (analyse vs encode)
[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 \
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/eval.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 = 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-32.asm dct-32.asm
27 X86SRC = $(X86SRC0:%=common/x86/%)
28
29 ifeq ($(ARCH),X86)
30 SRCS   += common/x86/mc-c.c common/x86/predict-c.c
31 ASMSRC  = $(X86SRC) common/x86/pixel-32.asm
32 OBJASM  = $(ASMSRC:%.asm=%.o)
33 ASFLAGS += -Icommon/x86/
34 $(OBJASM): common/x86/x86inc.asm common/x86/x86inc-32.asm
35 checkasm: tools/checkasm-32.o
36 endif
37
38 ifeq ($(ARCH),X86_64)
39 SRCS   += common/x86/mc-c.c common/x86/predict-c.c
40 ASMSRC  = $(X86SRC:-32.asm=-64.asm)
41 OBJASM  = $(ASMSRC:%.asm=%.o)
42 ASFLAGS += -Icommon/x86/ -DARCH_X86_64
43 $(OBJASM): common/x86/x86inc.asm common/x86/x86inc-64.asm
44 endif
45 endif
46
47 # AltiVec optims
48 ifeq ($(ARCH),PPC)
49 ALTIVECSRC += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \
50               common/ppc/quant.c common/ppc/deblock.c \
51               common/ppc/predict.c
52 SRCS += $(ALTIVECSRC)
53 $(ALTIVECSRC:%.c=%.o): CFLAGS += $(ALTIVECFLAGS)
54 endif
55
56 # VIS optims
57 ifeq ($(ARCH),UltraSparc)
58 ASMSRC += common/sparc/pixel.asm
59 OBJASM  = $(ASMSRC:%.asm=%.o)
60 endif
61
62 ifneq ($(HAVE_GETOPT_LONG),1)
63 SRCS += extras/getopt.c
64 endif
65
66 OBJS = $(SRCS:%.c=%.o)
67 OBJCLI = $(SRCCLI:%.c=%.o)
68 DEP  = depend
69
70 .PHONY: all default fprofiled clean distclean install install-gtk uninstall dox test testclean
71
72 default: $(DEP) x264$(EXE)
73
74 libx264.a: .depend $(OBJS) $(OBJASM)
75         ar rc libx264.a $(OBJS) $(OBJASM)
76         ranlib libx264.a
77
78 $(SONAME): .depend $(OBJS) $(OBJASM)
79         $(CC) -shared -o $@ $(OBJS) $(OBJASM) -Wl,-soname,$(SONAME) $(LDFLAGS)
80
81 x264$(EXE): $(OBJCLI) libx264.a 
82         $(CC) -o $@ $+ $(LDFLAGS)
83
84 libx264gtk.a: muxers.o libx264.a
85         $(MAKE) -C gtk
86
87 checkasm: tools/checkasm.o libx264.a
88         $(CC) -o $@ $+ $(LDFLAGS)
89
90 %.o: %.asm
91         $(AS) $(ASFLAGS) -o $@ $<
92 # delete local/anonymous symbols, so they don't show up in oprofile
93         -@ strip -x $@
94
95 .depend: config.mak
96         rm -f .depend
97 # Hacky - because gcc 2.9x doesn't have -MT
98         $(foreach SRC, $(SRCS) $(SRCCLI), ( $(ECHON) "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(ALTIVECFLAGS) $(SRC) -MM -g0 ) 1>> .depend;)
99
100 config.mak: $(wildcard .svn/entries */.svn/entries */*/.svn/entries)
101         ./configure $(CONFIGURE_ARGS)
102
103 depend: .depend
104 ifneq ($(wildcard .depend),)
105 include .depend
106 endif
107
108 SRC2 = $(SRCS) $(SRCCLI)
109 # These should cover most of the important codepaths
110 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac --pre-scenecut --direct temporal --no-ssim --no-psnr
111 OPT1 = --crf 16 -b2 -m3 -r3 --me hex -8 --direct spatial --no-dct-decimate
112 OPT2 = --crf 26 -b2 -m5 -r2 --me hex -8 -w --cqm jvt --nr 100
113 OPT3 = --crf 18 -b3 -m7 -r5 --me umh -8 -t1 -A all --mixed-refs --b-rdo -w --b-pyramid --direct auto --bime --no-fast-pskip
114 OPT4 = --crf 22 -b3 -m6 -r3 --me esa -8 -t2 -A all --mixed-refs --b-rdo --bime
115
116 ifeq (,$(VIDS))
117 fprofiled:
118         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
119         @echo 'where infiles are anything that x264 understands,'
120         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
121 else
122 fprofiled:
123         $(MAKE) clean
124         mv config.mak config.mak2
125         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
126         $(MAKE) x264$(EXE)
127         $(foreach V, $(VIDS), $(foreach I, 0 1 2 3 4, ./x264$(EXE) $(OPT$I) $(V) --progress -o $(DEVNULL) ;))
128         rm -f $(SRC2:%.c=%.o)
129         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
130         $(MAKE)
131         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
132         mv config.mak2 config.mak
133 endif
134
135 clean:
136         rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(SONAME) *.a x264 x264.exe .depend TAGS
137         rm -f checkasm checkasm.exe tools/checkasm.o
138         rm -f tools/avc2avi tools/avc2avi.exe tools/avc2avi.o
139         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
140         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
141         $(MAKE) -C gtk clean
142
143 distclean: clean
144         rm -f config.mak config.h x264.pc
145         rm -rf test/
146         $(MAKE) -C gtk distclean
147
148 install: x264 $(SONAME)
149         install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
150         install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
151         install -m 644 x264.h $(DESTDIR)$(includedir)
152         install -m 644 libx264.a $(DESTDIR)$(libdir)
153         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
154         install x264 $(DESTDIR)$(bindir)
155         ranlib $(DESTDIR)$(libdir)/libx264.a
156         $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.so)
157         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir))
158
159 install-gtk: libx264gtk.a
160         $(MAKE) -C gtk install
161
162 uninstall:
163         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
164         rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc
165         $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.so)
166         $(MAKE) -C gtk uninstall
167
168 etags: TAGS
169
170 TAGS:
171         etags $(SRCS)
172
173 dox:
174         doxygen Doxyfile
175
176 ifeq (,$(VIDS))
177 test:
178         @echo 'usage: make test VIDS="infile1 infile2 ..."'
179         @echo 'where infiles are anything that x264 understands,'
180         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
181 else
182 test:
183         perl tools/regression-test.pl --version=head,current --options='$(OPT0)' --options='$(OPT1)' --options='$(OPT2)' $(VIDS:%=--input=%)
184 endif
185
186 testclean:
187         rm -f test/*.log test/*.264
188         $(foreach DIR, $(wildcard test/x264-r*/), cd $(DIR) ; make clean ; cd ../.. ;)