]> git.sesse.net Git - x264/blob - Makefile
improve generation of Darwin libraries
[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/eval.c
14
15 SRCCLI = x264.c matroska.c muxers.c
16
17 # Visualization sources
18 ifeq ($(VIS),yes)
19 SRCS   += common/visualize.c common/display-x11.c
20 endif
21
22 # MMX/SSE optims
23 ifneq ($(AS),)
24 X86SRC0 = cabac-a.asm dct-a.asm deblock-a.asm mc-a.asm mc-a2.asm \
25           pixel-a.asm predict-a.asm quant-a.asm sad-a.asm \
26           cpu-32.asm dct-32.asm
27 X86SRC = $(X86SRC0:%=common/x86/%)
28
29 ifeq ($(ARCH),X86)
30 ARCH_X86 = yes
31 ASMSRC   = $(X86SRC) common/x86/pixel-32.asm
32 endif
33
34 ifeq ($(ARCH),X86_64)
35 ARCH_X86 = yes
36 ASMSRC   = $(X86SRC:-32.asm=-64.asm)
37 ASFLAGS += -DARCH_X86_64
38 endif
39
40 ifdef ARCH_X86
41 ASFLAGS += -Icommon/x86/
42 SRCS   += common/x86/mc-c.c common/x86/predict-c.c
43 OBJASM  = $(ASMSRC:%.asm=%.o)
44 $(OBJASM): common/x86/x86inc.asm common/x86/x86util.asm
45 checkasm: tools/checkasm-a.o
46 endif
47 endif
48
49 # AltiVec optims
50 ifeq ($(ARCH),PPC)
51 ALTIVECSRC += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \
52               common/ppc/quant.c common/ppc/deblock.c \
53               common/ppc/predict.c
54 SRCS += $(ALTIVECSRC)
55 $(ALTIVECSRC:%.c=%.o): CFLAGS += $(ALTIVECFLAGS)
56 endif
57
58 # VIS optims
59 ifeq ($(ARCH),UltraSparc)
60 ASMSRC += common/sparc/pixel.asm
61 OBJASM  = $(ASMSRC:%.asm=%.o)
62 endif
63
64 ifneq ($(HAVE_GETOPT_LONG),1)
65 SRCS += extras/getopt.c
66 endif
67
68 OBJS = $(SRCS:%.c=%.o)
69 OBJCLI = $(SRCCLI:%.c=%.o)
70 DEP  = depend
71
72 .PHONY: all default fprofiled clean distclean install install-gtk uninstall dox test testclean
73
74 default: $(DEP) x264$(EXE)
75
76 libx264.a: .depend $(OBJS) $(OBJASM)
77         ar rc libx264.a $(OBJS) $(OBJASM)
78         ranlib libx264.a
79
80 $(SONAME): .depend $(OBJS) $(OBJASM)
81         $(CC) -shared -o $@ $(OBJS) $(OBJASM) $(SOFLAGS) $(LDFLAGS)
82
83 x264$(EXE): $(OBJCLI) libx264.a 
84         $(CC) -o $@ $+ $(LDFLAGS)
85
86 libx264gtk.a: muxers.o libx264.a
87         $(MAKE) -C gtk
88
89 checkasm: tools/checkasm.o libx264.a
90         $(CC) -o $@ $+ $(LDFLAGS)
91
92 %.o: %.asm
93         $(AS) $(ASFLAGS) -o $@ $<
94 # delete local/anonymous symbols, so they don't show up in oprofile
95         -@ strip -x $@
96
97 .depend: config.mak
98         rm -f .depend
99 # Hacky - because gcc 2.9x doesn't have -MT
100         $(foreach SRC, $(SRCS) $(SRCCLI), ( $(ECHON) "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(ALTIVECFLAGS) $(SRC) -MM -g0 ) 1>> .depend;)
101
102 config.mak: $(wildcard .svn/entries */.svn/entries */*/.svn/entries)
103         ./configure $(CONFIGURE_ARGS)
104
105 depend: .depend
106 ifneq ($(wildcard .depend),)
107 include .depend
108 endif
109
110 SRC2 = $(SRCS) $(SRCCLI)
111 # These should cover most of the important codepaths
112 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac --pre-scenecut --direct temporal --no-ssim --no-psnr
113 OPT1 = --crf 16 -b2 -m3 -r3 --me hex -8 --direct spatial --no-dct-decimate
114 OPT2 = --crf 26 -b2 -m5 -r2 --me hex -8 -w --cqm jvt --nr 100
115 OPT3 = --crf 18 -b3 -m7 -r5 --me umh -8 -t1 -A all --mixed-refs --b-rdo -w --b-pyramid --direct auto --bime --no-fast-pskip
116 OPT4 = --crf 22 -b3 -m6 -r4 --me esa -8 -t2 -A all --mixed-refs --b-rdo --bime
117 OPT5 = --frames 50 --crf 24 -b3 -m7 -r3 --me tesa -8 -t1 --mixed-refs --b-rdo --bime
118 OPT6 = --frames 50 -q0 -m6 -r2 --me hex -Aall
119 OPT7 = --frames 50 -q0 -m2 -r1 --me hex --no-cabac
120
121 ifeq (,$(VIDS))
122 fprofiled:
123         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
124         @echo 'where infiles are anything that x264 understands,'
125         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
126 else
127 fprofiled:
128         $(MAKE) clean
129         mv config.mak config.mak2
130         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
131         $(MAKE) x264$(EXE)
132         $(foreach V, $(VIDS), $(foreach I, 0 1 2 3 4 5 6 7, ./x264$(EXE) $(OPT$I) $(V) --progress -o $(DEVNULL) ;))
133         rm -f $(SRC2:%.c=%.o)
134         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
135         $(MAKE)
136         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
137         mv config.mak2 config.mak
138 endif
139
140 clean:
141         rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(SONAME) *.a x264 x264.exe .depend TAGS
142         rm -f checkasm checkasm.exe tools/checkasm.o
143         rm -f tools/avc2avi tools/avc2avi.exe tools/avc2avi.o
144         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
145         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
146         $(MAKE) -C gtk clean
147
148 distclean: clean
149         rm -f config.mak config.h x264.pc
150         rm -rf test/
151         $(MAKE) -C gtk distclean
152
153 install: x264$(EXE) $(SONAME)
154         install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
155         install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
156         install -m 644 x264.h $(DESTDIR)$(includedir)
157         install -m 644 libx264.a $(DESTDIR)$(libdir)
158         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
159         install x264$(EXE) $(DESTDIR)$(bindir)
160         ranlib $(DESTDIR)$(libdir)/libx264.a
161 ifeq ($(SYS),MINGW)
162         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(bindir))
163 else
164         $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
165         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir))
166 endif
167         $(if $(IMPLIBNAME), install -m 644 $(IMPLIBNAME) $(DESTDIR)$(libdir))
168
169 install-gtk: libx264gtk.a
170         $(MAKE) -C gtk install
171
172 uninstall:
173         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
174         rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc
175         $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
176         $(MAKE) -C gtk uninstall
177
178 etags: TAGS
179
180 TAGS:
181         etags $(SRCS)
182
183 dox:
184         doxygen Doxyfile
185
186 ifeq (,$(VIDS))
187 test:
188         @echo 'usage: make test VIDS="infile1 infile2 ..."'
189         @echo 'where infiles are anything that x264 understands,'
190         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
191 else
192 test:
193         perl tools/regression-test.pl --version=head,current --options='$(OPT0)' --options='$(OPT1)' --options='$(OPT2)' $(VIDS:%=--input=%)
194 endif
195
196 testclean:
197         rm -f test/*.log test/*.264
198         $(foreach DIR, $(wildcard test/x264-r*/), cd $(DIR) ; make clean ; cd ../.. ;)