]> git.sesse.net Git - x264/blob - Makefile
Create and install x264_config.h
[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 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_PTHREAD 1, $(CONFIG)),)
38 SRCCLI += input/thread.c
39 SRCS   += common/threadpool.c
40 endif
41
42 ifneq ($(findstring HAVE_LAVF 1, $(CONFIG)),)
43 SRCCLI += input/lavf.c
44 endif
45
46 ifneq ($(findstring HAVE_FFMS 1, $(CONFIG)),)
47 SRCCLI += input/ffms.c
48 endif
49
50 ifneq ($(findstring HAVE_GPAC 1, $(CONFIG)),)
51 SRCCLI += output/mp4.c
52 endif
53
54 # Visualization sources
55 ifneq ($(findstring HAVE_VISUALIZE 1, $(CONFIG)),)
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 ifeq ($(findstring HIGH_BIT_DEPTH, $(CONFIG)),)
114 ASMSRC += common/sparc/pixel.asm
115 OBJASM  = $(ASMSRC:%.asm=%.o)
116 endif
117 endif
118
119 ifneq ($(HAVE_GETOPT_LONG),1)
120 SRCCLI += extras/getopt.c
121 endif
122
123 ifneq ($(SONAME),)
124 ifeq ($(SYS),MINGW)
125 SRCSO += x264dll.c
126 endif
127 endif
128
129 OBJS = $(SRCS:%.c=%.o)
130 OBJCLI = $(SRCCLI:%.c=%.o)
131 OBJSO = $(SRCSO:%.c=%.o)
132 DEP  = depend
133
134 .PHONY: all default fprofiled clean distclean install uninstall dox test testclean
135
136 default: $(DEP) x264$(EXE)
137
138 libx264.a: .depend $(OBJS) $(OBJASM)
139         $(AR) rc libx264.a $(OBJS) $(OBJASM)
140         $(RANLIB) libx264.a
141
142 $(SONAME): .depend $(OBJS) $(OBJASM) $(OBJSO)
143         $(CC) -shared -o $@ $(OBJS) $(OBJASM) $(OBJSO) $(SOFLAGS) $(LDFLAGS)
144
145 x264$(EXE): $(OBJCLI) libx264.a
146         $(CC) -o $@ $+ $(LDFLAGSCLI) $(LDFLAGS)
147
148 checkasm: tools/checkasm.o libx264.a
149         $(CC) -o $@ $+ $(LDFLAGS)
150
151 %.o: %.asm
152         $(AS) $(ASFLAGS) -o $@ $<
153         -@ $(STRIP) -x $@ # delete local/anonymous symbols, so they don't show up in oprofile
154
155 %.o: %.S
156         $(AS) $(ASFLAGS) -o $@ $<
157         -@ $(STRIP) -x $@ # delete local/anonymous symbols, so they don't show up in oprofile
158
159 .depend: config.mak
160         @rm -f .depend
161         @$(foreach SRC, $(SRCS) $(SRCCLI) $(SRCSO), $(CC) $(CFLAGS) $(SRC) -MT $(SRC:%.c=%.o) -MM -g0 1>> .depend;)
162
163 config.mak:
164         ./configure
165
166 depend: .depend
167 ifneq ($(wildcard .depend),)
168 include .depend
169 endif
170
171 SRC2 = $(SRCS) $(SRCCLI)
172 # These should cover most of the important codepaths
173 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac --direct temporal --ssim --no-weightb
174 OPT1 = --crf 16 -b2 -m3 -r3 --me hex --no-8x8dct --direct spatial --no-dct-decimate -t0  --slice-max-mbs 50
175 OPT2 = --crf 26 -b4 -m5 -r2 --me hex --cqm jvt --nr 100 --psnr --no-mixed-refs --b-adapt 2 --slice-max-size 1500
176 OPT3 = --crf 18 -b3 -m9 -r5 --me umh -t1 -A all --b-pyramid normal --direct auto --no-fast-pskip --no-mbtree
177 OPT4 = --crf 22 -b3 -m7 -r4 --me esa -t2 -A all --psy-rd 1.0:1.0 --slices 4
178 OPT5 = --frames 50 --crf 24 -b3 -m10 -r3 --me tesa -t2
179 OPT6 = --frames 50 -q0 -m9 -r2 --me hex -Aall
180 OPT7 = --frames 50 -q0 -m2 -r1 --me hex --no-cabac
181
182 ifeq (,$(VIDS))
183 fprofiled:
184         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
185         @echo 'where infiles are anything that x264 understands,'
186         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
187 else
188 fprofiled:
189         $(MAKE) clean
190         mv config.mak config.mak2
191         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
192         $(MAKE) x264$(EXE)
193         $(foreach V, $(VIDS), $(foreach I, 0 1 2 3 4 5 6 7, ./x264$(EXE) $(OPT$I) --threads 1 $(V) -o $(DEVNULL) ;))
194         rm -f $(SRC2:%.c=%.o)
195         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
196         $(MAKE)
197         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
198         mv config.mak2 config.mak
199 endif
200
201 clean:
202         rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(OBJSO) $(SONAME) *.a x264 x264.exe .depend TAGS
203         rm -f checkasm checkasm.exe tools/checkasm.o tools/checkasm-a.o
204         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
205         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
206
207 distclean: clean
208         rm -f config.mak config.h config.log x264.pc
209         rm -rf test/
210
211 install: x264$(EXE) $(SONAME)
212         install -d $(DESTDIR)$(bindir)
213         install -d $(DESTDIR)$(includedir)
214         install -d $(DESTDIR)$(libdir)
215         install -d $(DESTDIR)$(libdir)/pkgconfig
216         install -m 644 x264.h $(DESTDIR)$(includedir)
217         install -m 644 x264_config.h $(DESTDIR)$(includedir)
218         install -m 644 libx264.a $(DESTDIR)$(libdir)
219         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
220         install x264$(EXE) $(DESTDIR)$(bindir)
221         $(RANLIB) $(DESTDIR)$(libdir)/libx264.a
222 ifeq ($(SYS),MINGW)
223         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(bindir))
224 else
225         $(if $(SONAME), ln -f -s $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
226         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir))
227 endif
228         $(if $(IMPLIBNAME), install -m 644 $(IMPLIBNAME) $(DESTDIR)$(libdir))
229
230 uninstall:
231         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(includedir)/x264_config.h $(DESTDIR)$(libdir)/libx264.a
232         rm -f $(DESTDIR)$(bindir)/x264$(EXE) $(DESTDIR)$(libdir)/pkgconfig/x264.pc
233         $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
234
235 etags: TAGS
236
237 TAGS:
238         etags $(SRCS)