]> git.sesse.net Git - x264/blob - Makefile
Fix static pthreads + dynamically linked x264 on win32
[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/set.c \
10        common/quant.c common/vlc.c \
11        encoder/analyse.c encoder/me.c encoder/ratecontrol.c \
12        encoder/set.c encoder/macroblock.c encoder/cabac.c \
13        encoder/cavlc.c encoder/encoder.c encoder/lookahead.c
14
15 SRCCLI = x264.c input/yuv.c input/y4m.c output/raw.c \
16          output/matroska.c output/matroska_ebml.c \
17          output/flv.c output/flv_bytestream.c
18
19 SRCSO =
20
21 MUXERS := $(shell grep -E "(IN|OUT)PUT" config.h)
22
23 # Optional muxer module sources
24 ifneq ($(findstring AVS_INPUT, $(MUXERS)),)
25 SRCCLI += input/avs.c
26 endif
27
28 ifneq ($(findstring HAVE_PTHREAD, $(CFLAGS)),)
29 SRCCLI += input/thread.c
30 endif
31
32 ifneq ($(findstring LAVF_INPUT, $(MUXERS)),)
33 SRCCLI += input/lavf.c
34 endif
35
36 ifneq ($(findstring FFMS_INPUT, $(MUXERS)),)
37 SRCCLI += input/ffms.c
38 endif
39
40 ifneq ($(findstring MP4_OUTPUT, $(MUXERS)),)
41 SRCCLI += output/mp4.c
42 endif
43
44 # Visualization sources
45 ifeq ($(VIS),yes)
46 SRCS   += common/visualize.c common/display-x11.c
47 endif
48
49 # MMX/SSE optims
50 ifneq ($(AS),)
51 X86SRC0 = cabac-a.asm dct-a.asm deblock-a.asm mc-a.asm mc-a2.asm \
52           pixel-a.asm predict-a.asm quant-a.asm sad-a.asm \
53           cpu-a.asm dct-32.asm
54 X86SRC = $(X86SRC0:%=common/x86/%)
55
56 ifeq ($(ARCH),X86)
57 ARCH_X86 = yes
58 ASMSRC   = $(X86SRC) common/x86/pixel-32.asm
59 endif
60
61 ifeq ($(ARCH),X86_64)
62 ARCH_X86 = yes
63 ASMSRC   = $(X86SRC:-32.asm=-64.asm)
64 ASFLAGS += -DARCH_X86_64
65 endif
66
67 ifdef ARCH_X86
68 ASFLAGS += -Icommon/x86/
69 SRCS   += common/x86/mc-c.c common/x86/predict-c.c
70 OBJASM  = $(ASMSRC:%.asm=%.o)
71 $(OBJASM): common/x86/x86inc.asm common/x86/x86util.asm
72 checkasm: tools/checkasm-a.o
73 endif
74 endif
75
76 # AltiVec optims
77 ifeq ($(ARCH),PPC)
78 SRCS += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \
79         common/ppc/quant.c common/ppc/deblock.c \
80         common/ppc/predict.c
81 endif
82
83 # NEON optims
84 ifeq ($(ARCH),ARM)
85 ifneq ($(AS),)
86 ASMSRC += common/arm/cpu-a.S common/arm/pixel-a.S common/arm/mc-a.S \
87           common/arm/dct-a.S common/arm/quant-a.S common/arm/deblock-a.S \
88           common/arm/predict-a.S
89 SRCS   += common/arm/mc-c.c common/arm/predict-c.c
90 OBJASM  = $(ASMSRC:%.S=%.o)
91 endif
92 endif
93
94 # VIS optims
95 ifeq ($(ARCH),UltraSparc)
96 ASMSRC += common/sparc/pixel.asm
97 OBJASM  = $(ASMSRC:%.asm=%.o)
98 endif
99
100 ifneq ($(HAVE_GETOPT_LONG),1)
101 SRCS += extras/getopt.c
102 endif
103
104 ifneq ($(SONAME),)
105 ifeq ($(SYS),MINGW)
106 SRCSO += x264dll.c
107 endif
108 endif
109
110 OBJS = $(SRCS:%.c=%.o)
111 OBJCLI = $(SRCCLI:%.c=%.o)
112 OBJSO = $(SRCSO:%.c=%.o)
113 DEP  = depend
114
115 .PHONY: all default fprofiled clean distclean install uninstall dox test testclean
116
117 default: $(DEP) x264$(EXE)
118
119 libx264.a: .depend $(OBJS) $(OBJASM)
120         $(AR) rc libx264.a $(OBJS) $(OBJASM)
121         $(RANLIB) libx264.a
122
123 $(SONAME): .depend $(OBJS) $(OBJASM) $(OBJSO)
124         $(CC) -shared -o $@ $(OBJS) $(OBJASM) $(OBJSO) $(SOFLAGS) $(LDFLAGS)
125
126 x264$(EXE): $(OBJCLI) libx264.a
127         $(CC) -o $@ $+ $(LDFLAGS) $(LDFLAGSCLI)
128
129 checkasm: tools/checkasm.o libx264.a
130         $(CC) -o $@ $+ $(LDFLAGS)
131
132 %.o: %.asm
133         $(AS) $(ASFLAGS) -o $@ $<
134         -@ $(STRIP) -x $@ # delete local/anonymous symbols, so they don't show up in oprofile
135
136 %.o: %.S
137         $(AS) $(ASFLAGS) -o $@ $<
138         -@ $(STRIP) -x $@ # delete local/anonymous symbols, so they don't show up in oprofile
139
140 .depend: config.mak
141         rm -f .depend
142         $(foreach SRC, $(SRCS) $(SRCCLI) $(SRCSO), $(CC) $(CFLAGS) $(ALTIVECFLAGS) $(SRC) -MT $(SRC:%.c=%.o) -MM -g0 1>> .depend;)
143
144 config.mak:
145         ./configure
146
147 depend: .depend
148 ifneq ($(wildcard .depend),)
149 include .depend
150 endif
151
152 SRC2 = $(SRCS) $(SRCCLI)
153 # These should cover most of the important codepaths
154 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac --direct temporal --ssim --no-weightb
155 OPT1 = --crf 16 -b2 -m3 -r3 --me hex --no-8x8dct --direct spatial --no-dct-decimate -t0  --slice-max-mbs 50
156 OPT2 = --crf 26 -b4 -m5 -r2 --me hex --cqm jvt --nr 100 --psnr --no-mixed-refs --b-adapt 2 --slice-max-size 1500
157 OPT3 = --crf 18 -b3 -m9 -r5 --me umh -t1 -A all --b-pyramid normal --direct auto --no-fast-pskip --no-mbtree
158 OPT4 = --crf 22 -b3 -m7 -r4 --me esa -t2 -A all --psy-rd 1.0:1.0 --slices 4
159 OPT5 = --frames 50 --crf 24 -b3 -m10 -r3 --me tesa -t2
160 OPT6 = --frames 50 -q0 -m9 -r2 --me hex -Aall
161 OPT7 = --frames 50 -q0 -m2 -r1 --me hex --no-cabac
162
163 ifeq (,$(VIDS))
164 fprofiled:
165         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
166         @echo 'where infiles are anything that x264 understands,'
167         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
168 else
169 fprofiled:
170         $(MAKE) clean
171         mv config.mak config.mak2
172         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
173         $(MAKE) x264$(EXE)
174         $(foreach V, $(VIDS), $(foreach I, 0 1 2 3 4 5 6 7, ./x264$(EXE) $(OPT$I) --threads 1 $(V) -o $(DEVNULL) ;))
175         rm -f $(SRC2:%.c=%.o)
176         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
177         $(MAKE)
178         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
179         mv config.mak2 config.mak
180 endif
181
182 clean:
183         rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(OBJSO) $(SONAME) *.a x264 x264.exe .depend TAGS
184         rm -f checkasm checkasm.exe tools/checkasm.o tools/checkasm-a.o
185         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
186         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
187
188 distclean: clean
189         rm -f config.mak config.h x264.pc
190         rm -rf test/
191
192 install: x264$(EXE) $(SONAME)
193         install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
194         install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
195         install -m 644 x264.h $(DESTDIR)$(includedir)
196         install -m 644 libx264.a $(DESTDIR)$(libdir)
197         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
198         install x264$(EXE) $(DESTDIR)$(bindir)
199         $(RANLIB) $(DESTDIR)$(libdir)/libx264.a
200 ifeq ($(SYS),MINGW)
201         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(bindir))
202 else
203         $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
204         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir))
205 endif
206         $(if $(IMPLIBNAME), install -m 644 $(IMPLIBNAME) $(DESTDIR)$(libdir))
207
208 uninstall:
209         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
210         rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc
211         $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
212
213 etags: TAGS
214
215 TAGS:
216         etags $(SRCS)
217
218 dox:
219         doxygen Doxyfile
220
221 ifeq (,$(VIDS))
222 test:
223         @echo 'usage: make test VIDS="infile1 infile2 ..."'
224         @echo 'where infiles are anything that x264 understands,'
225         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
226 else
227 test:
228         perl tools/regression-test.pl --version=head,current --options='$(OPT0)' --options='$(OPT1)' --options='$(OPT2)' $(VIDS:%=--input=%)
229 endif
230
231 testclean:
232         rm -f test/*.log test/*.264
233         $(foreach DIR, $(wildcard test/x264-r*/), cd $(DIR) ; make clean ; cd ../.. ;)