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