]> git.sesse.net Git - x264/blob - Makefile
remove private stuff from public headers. no more need for -D__X264__
[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 ALTIVECSRC += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \
47               common/ppc/quant.c
48 SRCS += $(ALTIVECSRC)
49 $(ALTIVECSRC:%.c=%.o): CFLAGS += $(ALTIVECFLAGS)
50 endif
51
52 # VIS optims
53 ifeq ($(ARCH),UltraSparc)
54 ASMSRC += common/sparc/pixel.asm
55 OBJASM  = $(ASMSRC:%.asm=%.o)
56 endif
57
58 ifneq ($(HAVE_GETOPT_LONG),1)
59 SRCS += extras/getopt.c
60 endif
61
62 OBJS = $(SRCS:%.c=%.o)
63 OBJCLI = $(SRCCLI:%.c=%.o)
64 DEP  = depend
65
66 .PHONY: all default fprofiled clean distclean install install-gtk uninstall dox test testclean
67 all: default
68
69 default: $(DEP) x264$(EXE)
70
71 libx264.a: .depend $(OBJS) $(OBJASM)
72         ar rc libx264.a $(OBJS) $(OBJASM)
73         ranlib libx264.a
74
75 $(SONAME): .depend $(OBJS) $(OBJASM)
76         $(CC) -shared -o $@ $(OBJS) $(OBJASM) -Wl,-soname,$(SONAME) $(LDFLAGS)
77
78 x264$(EXE): $(OBJCLI) libx264.a 
79         $(CC) -o $@ $+ $(LDFLAGS)
80
81 libx264gtk.a: muxers.o libx264.a
82         $(MAKE) -C gtk
83
84 checkasm: tools/checkasm.o libx264.a
85         $(CC) -o $@ $+ $(LDFLAGS)
86
87 common/amd64/*.o: common/amd64/amd64inc.asm
88 common/i386/*.o: common/i386/i386inc.asm
89 %.o: %.asm
90         $(AS) $(ASFLAGS) -o $@ $<
91 # delete local/anonymous symbols, so they don't show up in oprofile
92         -@ strip -x $@
93
94 .depend: config.mak
95         rm -f .depend
96 # Hacky - because gcc 2.9x doesn't have -MT
97         $(foreach SRC, $(SRCS) $(SRCCLI), ( $(ECHON) "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(ALTIVECFLAGS) $(SRC) -MM -g0 ) 1>> .depend;)
98
99 config.mak: $(wildcard .svn/entries */.svn/entries */*/.svn/entries)
100         ./configure $(CONFIGURE_ARGS)
101
102 depend: .depend
103 ifneq ($(wildcard .depend),)
104 include .depend
105 endif
106
107 SRC2 = $(SRCS) $(SRCCLI)
108 # These should cover most of the important codepaths
109 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac
110 OPT1 = --crf 18 -b2 -m3 -r3 --me hex -8 --cqm jvt --direct spatial
111 OPT2 = --crf 24 -b3 -m7 -r5 --me umh -8 -w -t1 -A all --b-pyramid --b-rdo --mixed-refs --direct auto
112
113 ifeq (,$(VIDS))
114 fprofiled:
115         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
116         @echo 'where infiles are anything that x264 understands,'
117         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
118 else
119 fprofiled:
120         $(MAKE) clean
121         mv config.mak config.mak2
122         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
123         $(MAKE) x264$(EXE)
124         $(foreach V, $(VIDS), $(foreach I, 0 1 2, ./x264$(EXE) $(OPT$I) $(V) --progress -o $(DEVNULL) ;))
125         rm -f $(SRC2:%.c=%.o)
126         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
127         $(MAKE)
128         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
129         mv config.mak2 config.mak
130 endif
131
132 clean:
133         rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(SONAME) *.a x264 x264.exe .depend TAGS
134         rm -f checkasm checkasm.exe tools/checkasm.o
135         rm -f tools/avc2avi tools/avc2avi.exe tools/avc2avi.o
136         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
137         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
138         $(MAKE) -C gtk clean
139
140 distclean: clean
141         rm -f config.mak config.h x264.pc
142         rm -rf test/
143         $(MAKE) -C gtk distclean
144
145 install: x264 $(SONAME)
146         install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
147         install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
148         install -m 644 x264.h $(DESTDIR)$(includedir)
149         install -m 644 libx264.a $(DESTDIR)$(libdir)
150         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
151         install x264 $(DESTDIR)$(bindir)
152         ranlib $(DESTDIR)$(libdir)/libx264.a
153         $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.so)
154         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir))
155
156 install-gtk: libx264gtk.a
157         $(MAKE) -C gtk install
158
159 uninstall:
160         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
161         rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc
162         $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.so)
163         $(MAKE) -C gtk uninstall
164
165 etags: TAGS
166
167 TAGS:
168         etags $(SRCS)
169
170 dox:
171         doxygen Doxyfile
172
173 ifeq (,$(VIDS))
174 test:
175         @echo 'usage: make test VIDS="infile1 infile2 ..."'
176         @echo 'where infiles are anything that x264 understands,'
177         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
178 else
179 test:
180         perl tools/regression-test.pl --version=head,current --options='$(OPT0)' --options='$(OPT1)' --options='$(OPT2)' $(VIDS:%=--input=%)
181 endif
182
183 testclean:
184         rm -f test/*.log test/*.264
185         $(foreach DIR, $(wildcard test/x264-r*/), cd $(DIR) ; make clean ; cd ../.. ;)