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