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