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