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