]> git.sesse.net Git - x264/blob - Makefile
fix an arithmetic overflow in trellis at high qp.
[x264] / Makefile
1 # Makefile
2
3 include config.mak
4
5 SRCS = common/mc.c common/predict.c common/pixel.c common/macroblock.c \
6        common/frame.c common/dct.c common/cpu.c common/cabac.c \
7        common/common.c common/mdate.c common/csp.c common/set.c \
8        common/quant.c \
9        encoder/analyse.c encoder/me.c encoder/ratecontrol.c \
10        encoder/set.c encoder/macroblock.c encoder/cabac.c \
11        encoder/cavlc.c encoder/encoder.c encoder/eval.c
12
13 SRCCLI = x264.c matroska.c muxers.c
14
15 # Visualization sources
16 ifeq ($(VIS),yes)
17 SRCS   += common/visualize.c common/display-x11.c
18 endif
19
20 # MMX/SSE optims
21 ifeq ($(ARCH),X86)
22 ifneq ($(AS),)
23 SRCS   += common/i386/mc-c.c common/i386/predict-c.c
24 ASMSRC  = common/i386/dct-a.asm common/i386/cpu-a.asm \
25           common/i386/pixel-a.asm common/i386/mc-a.asm \
26           common/i386/mc-a2.asm common/i386/predict-a.asm \
27           common/i386/pixel-sse2.asm common/i386/quant-a.asm \
28           common/i386/deblock-a.asm
29 OBJASM  = $(ASMSRC:%.asm=%.o)
30 ASFLAGS += -Icommon/i386/
31 endif
32 endif
33
34 # MMX/SSE optims
35 ifeq ($(ARCH),X86_64)
36 ifneq ($(AS),)
37 SRCS   += common/i386/mc-c.c common/i386/predict-c.c
38 ASMSRC  = common/amd64/dct-a.asm common/amd64/cpu-a.asm \
39           common/amd64/pixel-a.asm common/amd64/mc-a.asm \
40           common/amd64/mc-a2.asm common/amd64/predict-a.asm \
41           common/amd64/pixel-sse2.asm common/amd64/quant-a.asm \
42           common/amd64/deblock-a.asm
43 OBJASM  = $(ASMSRC:%.asm=%.o)
44 ASFLAGS += -Icommon/amd64
45 endif
46 endif
47
48 # AltiVec optims
49 ifeq ($(ARCH),PPC)
50 ALTIVECSRC += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \
51               common/ppc/quant.c common/ppc/deblock.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 all: default
72
73 default: $(DEP) x264$(EXE)
74
75 libx264.a: .depend $(OBJS) $(OBJASM)
76         ar rc libx264.a $(OBJS) $(OBJASM)
77         ranlib libx264.a
78
79 $(SONAME): .depend $(OBJS) $(OBJASM)
80         $(CC) -shared -o $@ $(OBJS) $(OBJASM) -Wl,-soname,$(SONAME) $(LDFLAGS)
81
82 x264$(EXE): $(OBJCLI) libx264.a 
83         $(CC) -o $@ $+ $(LDFLAGS)
84
85 libx264gtk.a: muxers.o libx264.a
86         $(MAKE) -C gtk
87
88 checkasm: tools/checkasm.o libx264.a
89         $(CC) -o $@ $+ $(LDFLAGS)
90
91 common/amd64/*.o: common/amd64/amd64inc.asm
92 common/i386/*.o: common/i386/i386inc.asm
93 %.o: %.asm
94         $(AS) $(ASFLAGS) -o $@ $<
95 # delete local/anonymous symbols, so they don't show up in oprofile
96         -@ strip -x $@
97
98 .depend: config.mak
99         rm -f .depend
100 # Hacky - because gcc 2.9x doesn't have -MT
101         $(foreach SRC, $(SRCS) $(SRCCLI), ( $(ECHON) "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(ALTIVECFLAGS) $(SRC) -MM -g0 ) 1>> .depend;)
102
103 config.mak: $(wildcard .svn/entries */.svn/entries */*/.svn/entries)
104         ./configure $(CONFIGURE_ARGS)
105
106 depend: .depend
107 ifneq ($(wildcard .depend),)
108 include .depend
109 endif
110
111 SRC2 = $(SRCS) $(SRCCLI)
112 # These should cover most of the important codepaths
113 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac
114 OPT1 = --crf 18 -b2 -m3 -r3 --me hex -8 --cqm jvt --direct spatial
115 OPT2 = --crf 24 -b3 -m7 -r5 --me umh -8 -w -t1 -A all --b-pyramid --b-rdo --mixed-refs --direct auto
116
117 ifeq (,$(VIDS))
118 fprofiled:
119         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
120         @echo 'where infiles are anything that x264 understands,'
121         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
122 else
123 fprofiled:
124         $(MAKE) clean
125         mv config.mak config.mak2
126         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
127         $(MAKE) x264$(EXE)
128         $(foreach V, $(VIDS), $(foreach I, 0 1 2, ./x264$(EXE) $(OPT$I) $(V) --progress -o $(DEVNULL) ;))
129         rm -f $(SRC2:%.c=%.o)
130         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
131         $(MAKE)
132         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
133         mv config.mak2 config.mak
134 endif
135
136 clean:
137         rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(SONAME) *.a x264 x264.exe .depend TAGS
138         rm -f checkasm checkasm.exe tools/checkasm.o
139         rm -f tools/avc2avi tools/avc2avi.exe tools/avc2avi.o
140         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
141         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
142         $(MAKE) -C gtk clean
143
144 distclean: clean
145         rm -f config.mak config.h x264.pc
146         rm -rf test/
147         $(MAKE) -C gtk distclean
148
149 install: x264 $(SONAME)
150         install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
151         install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
152         install -m 644 x264.h $(DESTDIR)$(includedir)
153         install -m 644 libx264.a $(DESTDIR)$(libdir)
154         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
155         install x264 $(DESTDIR)$(bindir)
156         ranlib $(DESTDIR)$(libdir)/libx264.a
157         $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.so)
158         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir))
159
160 install-gtk: libx264gtk.a
161         $(MAKE) -C gtk install
162
163 uninstall:
164         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
165         rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc
166         $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.so)
167         $(MAKE) -C gtk uninstall
168
169 etags: TAGS
170
171 TAGS:
172         etags $(SRCS)
173
174 dox:
175         doxygen Doxyfile
176
177 ifeq (,$(VIDS))
178 test:
179         @echo 'usage: make test VIDS="infile1 infile2 ..."'
180         @echo 'where infiles are anything that x264 understands,'
181         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
182 else
183 test:
184         perl tools/regression-test.pl --version=head,current --options='$(OPT0)' --options='$(OPT1)' --options='$(OPT2)' $(VIDS:%=--input=%)
185 endif
186
187 testclean:
188         rm -f test/*.log test/*.264
189         $(foreach DIR, $(wildcard test/x264-r*/), cd $(DIR) ; make clean ; cd ../.. ;)