]> git.sesse.net Git - x264/blob - Makefile
cli: large file support
[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 # Visualization sources
14 ifeq ($(VIS),yes)
15 SRCS   += common/visualize.c common/display-x11.c
16 endif
17
18 # MMX/SSE optims
19 ifeq ($(ARCH),X86)
20 SRCS   += common/i386/mc-c.c common/i386/dct-c.c common/i386/predict.c
21 ASMSRC  = common/i386/dct-a.asm common/i386/cpu-a.asm \
22           common/i386/pixel-a.asm common/i386/mc-a.asm \
23           common/i386/mc-a2.asm common/i386/predict-a.asm \
24           common/i386/pixel-sse2.asm common/i386/quant-a.asm \
25           common/i386/deblock-a.asm
26 OBJASM  = $(ASMSRC:%.asm=%.o)
27 endif
28
29 # MMX/SSE optims
30 ifeq ($(ARCH),X86_64)
31 SRCS   += common/i386/mc-c.c common/i386/dct-c.c common/i386/predict.c
32 ASMSRC  = common/amd64/dct-a.asm common/amd64/cpu-a.asm \
33           common/amd64/pixel-a.asm common/amd64/mc-a.asm \
34           common/amd64/mc-a2.asm common/amd64/predict-a.asm \
35           common/amd64/pixel-sse2.asm common/amd64/quant-a.asm \
36           common/amd64/deblock-a.asm
37 OBJASM  = $(ASMSRC:%.asm=%.o)
38 ASFLAGS += -Icommon/amd64
39 endif
40
41 # AltiVec optims
42 ifeq ($(ARCH),PPC)
43 SRCS += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c
44 endif
45
46 # VIS optims
47 ifeq ($(ARCH),UltraSparc)
48 ASMSRC += common/sparc/pixel.asm
49 OBJASM  = $(ASMSRC:%.asm=%.o)
50 endif
51
52 ifneq ($(HAVE_GETOPT_LONG),1)
53 SRCS += extras/getopt.c
54 endif
55
56 OBJS = $(SRCS:%.c=%.o)
57 DEP  = depend
58
59 .PHONY: default fprofiled clean distclean install uninstall
60 default: $(DEP) x264$(EXE)
61
62 libx264.a: .depend $(OBJS) $(OBJASM)
63         ar rc libx264.a $(OBJS) $(OBJASM)
64         ranlib libx264.a
65
66 x264$(EXE): libx264.a x264.o matroska.o
67         $(CC) -o $@ x264.o matroska.o libx264.a $(LDFLAGS)
68
69 x264vfw.dll: libx264.a $(wildcard vfw/*.c vfw/*.h)
70         make -C vfw/build/cygwin
71
72 checkasm: tools/checkasm.o libx264.a
73         $(CC) -o $@ $< libx264.a $(LDFLAGS)
74
75 common/amd64/*.o: common/amd64/amd64inc.asm
76 %.o: %.asm
77         $(AS) $(ASFLAGS) -o $@ $<
78
79 .depend: config.mak
80         rm -f .depend
81 # Hacky - because gcc 2.9x doesn't have -MT
82         $(foreach SRC, $(SRCS) x264.c matroska.c, ( echo -n "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(SRC) -MM -g0 ) 1>> .depend;)
83
84 config.mak: $(wildcard .svn/entries */.svn/entries */*/.svn/entries)
85         ./configure $(CONFIGURE_ARGS)
86
87 depend: .depend
88 ifneq ($(wildcard .depend),)
89 include .depend
90 endif
91
92 SRC2 = $(SRCS) x264.c matroska.c
93 # These should cover most of the important codepaths
94 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac
95 OPT1 = --crf 18 -b2 -m3 -r3 --me hex -8 --cqm jvt --direct spatial
96 OPT2 = --crf 24 -b3 -m6 -r6 --me umh -8 -w -t1 -A all --b-pyramid --b-rdo --mixed-refs
97
98 ifeq (,$(VIDS))
99 fprofiled:
100         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
101         @echo 'where infiles are anything that x264 understands,'
102         @echo 'i.e. YUV with resolution in the filename, or avisynth.'
103 else
104 fprofiled:
105         make clean
106         mv config.mak config.mak2
107         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
108         make x264$(EXE)
109         $(foreach V, $(VIDS), $(foreach I, 0 1 2, ./x264$(EXE) $(OPT$I) $(V) --progress -o $(DEVNULL) ;))
110         rm -f $(SRC2:%.c=%.o)
111         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
112         make
113         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
114         mv config.mak2 config.mak
115 endif
116
117 clean:
118         rm -f $(OBJS) $(OBJASM) *.a x264.o matroska.o x264 x264.exe .depend TAGS
119         rm -f checkasm checkasm.exe tools/checkasm.o
120         rm -f tools/avc2avi tools/avc2avi.exe tools/avc2avi.o
121         rm -rf vfw/build/cygwin/bin
122         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
123         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
124
125 distclean: clean
126         rm -f config.mak config.h vfw/build/cygwin/config.mak x264.pc
127
128 install: x264
129         install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
130         install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
131         install -m 644 x264.h $(DESTDIR)$(includedir)
132         install -m 644 libx264.a $(DESTDIR)$(libdir)
133         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
134         install x264 $(DESTDIR)$(bindir)
135         ranlib $(DESTDIR)$(libdir)/libx264.a
136
137 uninstall:
138         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
139         rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc
140
141 etags: TAGS
142
143 TAGS:
144         etags $(SRCS)