]> git.sesse.net Git - x264/blob - Makefile
display final ratefactor in abr when a loose vbv is applied. (still disabled in true...
[x264] / Makefile
1 # Makefile
2
3 include config.mak
4
5 SRCS = common/mc.c common/predict.c common/pixel.c common/macroblock.c \
6        common/frame.c common/dct.c common/cpu.c common/cabac.c \
7        common/common.c common/mdate.c common/csp.c common/set.c \
8        common/quant.c \
9        encoder/analyse.c encoder/me.c encoder/ratecontrol.c \
10        encoder/set.c encoder/macroblock.c encoder/cabac.c \
11        encoder/cavlc.c encoder/encoder.c encoder/eval.c
12
13 SRCCLI = x264.c matroska.c muxers.c
14
15 # Visualization sources
16 ifeq ($(VIS),yes)
17 SRCS   += common/visualize.c common/display-x11.c
18 endif
19
20 # MMX/SSE optims
21 ifeq ($(ARCH),X86)
22 SRCS   += common/i386/mc-c.c common/i386/predict-c.c
23 ASMSRC  = common/i386/dct-a.asm common/i386/cpu-a.asm \
24           common/i386/pixel-a.asm common/i386/mc-a.asm \
25           common/i386/mc-a2.asm common/i386/predict-a.asm \
26           common/i386/pixel-sse2.asm common/i386/quant-a.asm \
27           common/i386/deblock-a.asm
28 OBJASM  = $(ASMSRC:%.asm=%.o)
29 ASFLAGS += -Icommon/i386/
30 endif
31
32 # MMX/SSE optims
33 ifeq ($(ARCH),X86_64)
34 SRCS   += common/i386/mc-c.c common/i386/predict-c.c
35 ASMSRC  = common/amd64/dct-a.asm common/amd64/cpu-a.asm \
36           common/amd64/pixel-a.asm common/amd64/mc-a.asm \
37           common/amd64/mc-a2.asm common/amd64/predict-a.asm \
38           common/amd64/pixel-sse2.asm common/amd64/quant-a.asm \
39           common/amd64/deblock-a.asm
40 OBJASM  = $(ASMSRC:%.asm=%.o)
41 ASFLAGS += -Icommon/amd64
42 endif
43
44 # AltiVec optims
45 ifeq ($(ARCH),PPC)
46 SRCS += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c
47 endif
48
49 # VIS optims
50 ifeq ($(ARCH),UltraSparc)
51 ASMSRC += common/sparc/pixel.asm
52 OBJASM  = $(ASMSRC:%.asm=%.o)
53 endif
54
55 ifneq ($(HAVE_GETOPT_LONG),1)
56 SRCS += extras/getopt.c
57 endif
58
59 OBJS = $(SRCS:%.c=%.o)
60 OBJCLI = $(SRCCLI:%.c=%.o)
61 DEP  = depend
62
63 .PHONY: all default fprofiled clean distclean install install-gtk uninstall
64 all: default
65
66 default: $(DEP) x264$(EXE)
67
68 libx264.a: .depend $(OBJS) $(OBJASM)
69         ar rc libx264.a $(OBJS) $(OBJASM)
70         ranlib libx264.a
71
72 $(SONAME): .depend $(OBJS) $(OBJASM)
73         $(CC) -shared -o $@ $(OBJS) $(OBJASM) -Wl,-soname,$(SONAME) $(LDFLAGS)
74
75 x264$(EXE): $(OBJCLI) libx264.a 
76         $(CC) -o $@ $+ $(LDFLAGS)
77
78 libx264gtk.a: muxers.o libx264.a
79         $(MAKE) -C gtk
80
81 checkasm: tools/checkasm.o libx264.a
82         $(CC) -o $@ $+ $(LDFLAGS)
83
84 common/amd64/*.o: common/amd64/amd64inc.asm
85 common/i386/*.o: common/i386/i386inc.asm
86 %.o: %.asm
87         $(AS) $(ASFLAGS) -o $@ $<
88 # delete local/anonymous symbols, so they don't show up in oprofile
89         -@ strip -x $@
90
91 .depend: config.mak
92         rm -f .depend
93 # Hacky - because gcc 2.9x doesn't have -MT
94         $(foreach SRC, $(SRCS) $(SRCCLI), ( echo -n "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(SRC) -MM -g0 ) 1>> .depend;)
95
96 config.mak: $(wildcard .svn/entries */.svn/entries */*/.svn/entries)
97         ./configure $(CONFIGURE_ARGS)
98
99 depend: .depend
100 ifneq ($(wildcard .depend),)
101 include .depend
102 endif
103
104 SRC2 = $(SRCS) $(SRCCLI)
105 # These should cover most of the important codepaths
106 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac
107 OPT1 = --crf 18 -b2 -m3 -r3 --me hex -8 --cqm jvt --direct spatial
108 OPT2 = --crf 24 -b3 -m6 -r6 --me umh -8 -w -t1 -A all --b-pyramid --b-rdo --mixed-refs
109
110 ifeq (,$(VIDS))
111 fprofiled:
112         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
113         @echo 'where infiles are anything that x264 understands,'
114         @echo 'i.e. YUV with resolution in the filename, or avisynth.'
115 else
116 fprofiled:
117         $(MAKE) clean
118         mv config.mak config.mak2
119         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
120         $(MAKE) x264$(EXE)
121         $(foreach V, $(VIDS), $(foreach I, 0 1 2, ./x264$(EXE) $(OPT$I) $(V) --progress -o $(DEVNULL) ;))
122         rm -f $(SRC2:%.c=%.o)
123         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
124         $(MAKE)
125         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
126         mv config.mak2 config.mak
127 endif
128
129 clean:
130         rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(SONAME) *.a x264 x264.exe .depend TAGS
131         rm -f checkasm checkasm.exe tools/checkasm.o
132         rm -f tools/avc2avi tools/avc2avi.exe tools/avc2avi.o
133         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
134         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
135         $(MAKE) -C gtk clean
136
137 distclean: clean
138         rm -f config.mak config.h x264.pc
139         $(MAKE) -C gtk distclean
140
141 install: x264 $(SONAME)
142         install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
143         install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
144         install -m 644 x264.h $(DESTDIR)$(includedir)
145         install -m 644 libx264.a $(DESTDIR)$(libdir)
146         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
147         install x264 $(DESTDIR)$(bindir)
148         ranlib $(DESTDIR)$(libdir)/libx264.a
149         $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.so)
150         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir))
151
152 install-gtk: libx264gtk.a
153         $(MAKE) -C gtk install
154
155 uninstall:
156         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
157         rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc
158         $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.so)
159         $(MAKE) -C gtk uninstall
160
161 etags: TAGS
162
163 TAGS:
164         etags $(SRCS)