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