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