]> git.sesse.net Git - x264/blob - Makefile
Add --disable-gpl option to configure
[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/rectangle.c \
10        common/set.c common/quant.c common/deblock.c common/vlc.c \
11        common/mvpred.c common/bitstream.c \
12        encoder/analyse.c encoder/me.c encoder/ratecontrol.c \
13        encoder/set.c encoder/macroblock.c encoder/cabac.c \
14        encoder/cavlc.c encoder/encoder.c encoder/lookahead.c
15
16 SRCCLI = x264.c input/input.c input/timecode.c input/raw.c input/y4m.c \
17          output/raw.c output/matroska.c output/matroska_ebml.c \
18          output/flv.c output/flv_bytestream.c filters/filters.c \
19          filters/video/video.c filters/video/source.c filters/video/internal.c \
20          filters/video/resize.c filters/video/cache.c filters/video/fix_vfr_pts.c \
21          filters/video/select_every.c filters/video/crop.c
22
23 SRCSO =
24
25 CONFIG := $(shell cat config.h)
26
27 # GPL-only files
28 ifeq ($(GPL),yes)
29 SRCCLI +=
30 endif
31
32 # Optional module sources
33 ifneq ($(findstring HAVE_AVS, $(CONFIG)),)
34 SRCCLI += input/avs.c
35 endif
36
37 ifneq ($(findstring HAVE_PTHREAD, $(CONFIG)),)
38 SRCCLI += input/thread.c
39 SRCS   += common/threadpool.c
40 endif
41
42 ifneq ($(findstring HAVE_LAVF, $(CONFIG)),)
43 SRCCLI += input/lavf.c
44 endif
45
46 ifneq ($(findstring HAVE_FFMS, $(CONFIG)),)
47 SRCCLI += input/ffms.c
48 endif
49
50 ifneq ($(findstring HAVE_GPAC, $(CONFIG)),)
51 SRCCLI += output/mp4.c
52 endif
53
54 # Visualization sources
55 ifeq ($(VIS),yes)
56 SRCS   += common/visualize.c common/display-x11.c
57 endif
58
59 # MMX/SSE optims
60 ifneq ($(AS),)
61 X86SRC0 = const-a.asm cabac-a.asm dct-a.asm deblock-a.asm mc-a.asm \
62           mc-a2.asm pixel-a.asm predict-a.asm quant-a.asm sad-a.asm \
63           cpu-a.asm dct-32.asm bitstream-a.asm
64 X86SRC = $(X86SRC0:%=common/x86/%)
65
66 ifeq ($(ARCH),X86)
67 ARCH_X86 = yes
68 ASMSRC   = $(X86SRC) common/x86/pixel-32.asm
69 endif
70
71 ifeq ($(ARCH),X86_64)
72 ARCH_X86 = yes
73 ASMSRC   = $(X86SRC:-32.asm=-64.asm)
74 ASFLAGS += -DARCH_X86_64
75 endif
76
77 ifdef ARCH_X86
78 ASFLAGS += -Icommon/x86/
79 SRCS   += common/x86/mc-c.c common/x86/predict-c.c
80 OBJASM  = $(ASMSRC:%.asm=%.o)
81 $(OBJASM): common/x86/x86inc.asm common/x86/x86util.asm
82 checkasm: tools/checkasm-a.o
83 endif
84 endif
85
86 # AltiVec optims
87 ifeq ($(ARCH),PPC)
88 ifneq ($(AS),)
89 SRCS += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \
90         common/ppc/quant.c common/ppc/deblock.c \
91         common/ppc/predict.c
92 endif
93 endif
94
95 # NEON optims
96 ifeq ($(ARCH),ARM)
97 ifneq ($(AS),)
98 ASMSRC += common/arm/cpu-a.S common/arm/pixel-a.S common/arm/mc-a.S \
99           common/arm/dct-a.S common/arm/quant-a.S common/arm/deblock-a.S \
100           common/arm/predict-a.S
101 SRCS   += common/arm/mc-c.c common/arm/predict-c.c
102 OBJASM  = $(ASMSRC:%.S=%.o)
103 endif
104 endif
105
106 # VIS optims
107 ifeq ($(ARCH),UltraSparc)
108 ASMSRC += common/sparc/pixel.asm
109 OBJASM  = $(ASMSRC:%.asm=%.o)
110 endif
111
112 ifneq ($(HAVE_GETOPT_LONG),1)
113 SRCCLI += extras/getopt.c
114 endif
115
116 ifneq ($(SONAME),)
117 ifeq ($(SYS),MINGW)
118 SRCSO += x264dll.c
119 endif
120 endif
121
122 OBJS = $(SRCS:%.c=%.o)
123 OBJCLI = $(SRCCLI:%.c=%.o)
124 OBJSO = $(SRCSO:%.c=%.o)
125 DEP  = depend
126
127 .PHONY: all default fprofiled clean distclean install uninstall dox test testclean
128
129 default: $(DEP) x264$(EXE)
130
131 libx264.a: .depend $(OBJS) $(OBJASM)
132         $(AR) rc libx264.a $(OBJS) $(OBJASM)
133         $(RANLIB) libx264.a
134
135 $(SONAME): .depend $(OBJS) $(OBJASM) $(OBJSO)
136         $(CC) -shared -o $@ $(OBJS) $(OBJASM) $(OBJSO) $(SOFLAGS) $(LDFLAGS)
137
138 x264$(EXE): $(OBJCLI) libx264.a
139         $(CC) -o $@ $+ $(LDFLAGSCLI) $(LDFLAGS)
140
141 checkasm: tools/checkasm.o libx264.a
142         $(CC) -o $@ $+ $(LDFLAGS)
143
144 %.o: %.asm
145         $(AS) $(ASFLAGS) -o $@ $<
146         -@ $(STRIP) -x $@ # delete local/anonymous symbols, so they don't show up in oprofile
147
148 %.o: %.S
149         $(AS) $(ASFLAGS) -o $@ $<
150         -@ $(STRIP) -x $@ # delete local/anonymous symbols, so they don't show up in oprofile
151
152 .depend: config.mak
153         @rm -f .depend
154         @$(foreach SRC, $(SRCS) $(SRCCLI) $(SRCSO), $(CC) $(CFLAGS) $(SRC) -MT $(SRC:%.c=%.o) -MM -g0 1>> .depend;)
155
156 config.mak:
157         ./configure
158
159 depend: .depend
160 ifneq ($(wildcard .depend),)
161 include .depend
162 endif
163
164 SRC2 = $(SRCS) $(SRCCLI)
165 # These should cover most of the important codepaths
166 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac --direct temporal --ssim --no-weightb
167 OPT1 = --crf 16 -b2 -m3 -r3 --me hex --no-8x8dct --direct spatial --no-dct-decimate -t0  --slice-max-mbs 50
168 OPT2 = --crf 26 -b4 -m5 -r2 --me hex --cqm jvt --nr 100 --psnr --no-mixed-refs --b-adapt 2 --slice-max-size 1500
169 OPT3 = --crf 18 -b3 -m9 -r5 --me umh -t1 -A all --b-pyramid normal --direct auto --no-fast-pskip --no-mbtree
170 OPT4 = --crf 22 -b3 -m7 -r4 --me esa -t2 -A all --psy-rd 1.0:1.0 --slices 4
171 OPT5 = --frames 50 --crf 24 -b3 -m10 -r3 --me tesa -t2
172 OPT6 = --frames 50 -q0 -m9 -r2 --me hex -Aall
173 OPT7 = --frames 50 -q0 -m2 -r1 --me hex --no-cabac
174
175 ifeq (,$(VIDS))
176 fprofiled:
177         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
178         @echo 'where infiles are anything that x264 understands,'
179         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
180 else
181 fprofiled:
182         $(MAKE) clean
183         mv config.mak config.mak2
184         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
185         $(MAKE) x264$(EXE)
186         $(foreach V, $(VIDS), $(foreach I, 0 1 2 3 4 5 6 7, ./x264$(EXE) $(OPT$I) --threads 1 $(V) -o $(DEVNULL) ;))
187         rm -f $(SRC2:%.c=%.o)
188         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
189         $(MAKE)
190         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
191         mv config.mak2 config.mak
192 endif
193
194 clean:
195         rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(OBJSO) $(SONAME) *.a x264 x264.exe .depend TAGS
196         rm -f checkasm checkasm.exe tools/checkasm.o tools/checkasm-a.o
197         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
198         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
199
200 distclean: clean
201         rm -f config.mak config.h config.log x264.pc
202         rm -rf test/
203
204 install: x264$(EXE) $(SONAME)
205         install -d $(DESTDIR)$(bindir)
206         install -d $(DESTDIR)$(includedir)
207         install -d $(DESTDIR)$(libdir)
208         install -d $(DESTDIR)$(libdir)/pkgconfig
209         install -m 644 x264.h $(DESTDIR)$(includedir)
210         install -m 644 libx264.a $(DESTDIR)$(libdir)
211         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
212         install x264$(EXE) $(DESTDIR)$(bindir)
213         $(RANLIB) $(DESTDIR)$(libdir)/libx264.a
214 ifeq ($(SYS),MINGW)
215         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(bindir))
216 else
217         $(if $(SONAME), ln -f -s $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
218         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir))
219 endif
220         $(if $(IMPLIBNAME), install -m 644 $(IMPLIBNAME) $(DESTDIR)$(libdir))
221
222 uninstall:
223         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
224         rm -f $(DESTDIR)$(bindir)/x264$(EXE) $(DESTDIR)$(libdir)/pkgconfig/x264.pc
225         $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
226
227 etags: TAGS
228
229 TAGS:
230         etags $(SRCS)
231
232 dox:
233         doxygen Doxyfile
234
235 ifeq (,$(VIDS))
236 test:
237         @echo 'usage: make test VIDS="infile1 infile2 ..."'
238         @echo 'where infiles are anything that x264 understands,'
239         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
240 else
241 test:
242         perl tools/regression-test.pl --version=head,current --options='$(OPT0)' --options='$(OPT1)' --options='$(OPT2)' $(VIDS:%=--input=%)
243 endif
244
245 testclean:
246         rm -f test/*.log test/*.264
247         $(foreach DIR, $(wildcard test/x264-r*/), cd $(DIR) ; make clean ; cd ../.. ;)