]> git.sesse.net Git - x264/blob - Makefile
MP4: set "track enabled" flag.
[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 CFLAGS += -DHAVE_GETOPT_LONG=0
55 else
56 CFLAGS += -DHAVE_GETOPT_LONG=1
57 endif
58
59 OBJS = $(SRCS:%.c=%.o)
60 DEP  = depend
61
62 .PHONY: default fprofiled clean distclean install uninstall
63 default: $(DEP) x264$(EXE)
64
65 libx264.a: .depend $(OBJS) $(OBJASM)
66         ar rc libx264.a $(OBJS) $(OBJASM)
67         ranlib libx264.a
68
69 x264$(EXE): libx264.a x264.o matroska.o
70         $(CC) -o $@ x264.o matroska.o libx264.a $(LDFLAGS)
71
72 x264vfw.dll: libx264.a $(wildcard vfw/*.c vfw/*.h)
73         make -C vfw/build/cygwin
74
75 checkasm: tools/checkasm.o libx264.a
76         $(CC) -o $@ $< libx264.a $(LDFLAGS)
77
78 common/amd64/*.o: common/amd64/amd64inc.asm
79 %.o: %.asm
80         $(AS) $(ASFLAGS) -o $@ $<
81
82 .depend: config.mak config.h
83         rm -f .depend
84 # Hacky - because gcc 2.9x doesn't have -MT
85         $(foreach SRC, $(SRCS) x264.c matroska.c, ( echo -n "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(SRC) -MM -g0 ) 1>> .depend;)
86
87 config.h: $(wildcard .svn/entries */.svn/entries */*/.svn/entries)
88         ./version.sh
89
90 depend: .depend
91 ifneq ($(wildcard .depend),)
92 include .depend
93 endif
94
95 SRC2 = $(SRCS) x264.c matroska.c
96 # These should cover most of the important codepaths
97 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac
98 OPT1 = --crf 18 -b2 -m3 -r3 --me hex -8 --cqm jvt --direct spatial
99 OPT2 = --crf 24 -b3 -m6 -r6 --me umh -8 -w -t1 -A all --b-pyramid --b-rdo --mixed-refs
100
101 ifeq (,$(VIDS))
102 fprofiled:
103         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
104         @echo 'where infiles are anything that x264 understands,'
105         @echo 'i.e. YUV with resolution in the filename, or avisynth.'
106 else
107 fprofiled:
108         make clean
109         mv config.mak config.mak2
110         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
111         make x264$(EXE)
112         $(foreach V, $(VIDS), $(foreach I, 0 1 2, ./x264$(EXE) $(OPT$I) $(V) --progress -o $(DEVNULL) ;))
113         rm -f $(SRC2:%.c=%.o)
114         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
115         make
116         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
117         mv config.mak2 config.mak
118 endif
119
120 clean:
121         rm -f $(OBJS) $(OBJASM) config.h *.a x264.o matroska.o x264 x264.exe .depend TAGS
122         rm -f checkasm checkasm.exe tools/checkasm.o
123         rm -f tools/avc2avi tools/avc2avi.exe tools/avc2avi.o
124         rm -rf vfw/build/cygwin/bin
125         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
126         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
127
128 distclean: clean
129         rm -f config.mak vfw/build/cygwin/config.mak x264.pc
130
131 install: x264
132         install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
133         install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
134         install -m 644 x264.h $(DESTDIR)$(includedir)
135         install -m 644 libx264.a $(DESTDIR)$(libdir)
136         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
137         install x264 $(DESTDIR)$(bindir)
138         ranlib $(DESTDIR)$(libdir)/libx264.a
139
140 uninstall:
141         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
142         rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc
143
144 etags: TAGS
145
146 TAGS:
147         etags $(SRCS)