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