X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=Makefile;h=63338e8fa2bec660d9e58f0d77a8a7e6b1b16960;hb=dc95c0f4d30e5289442b1679bf674b92f18f5083;hp=a5f51812a4a2e5dedfc40c62f2337903a3726b11;hpb=58b7012e219b64752168084fa028e76792b6f42a;p=x264 diff --git a/Makefile b/Makefile index a5f51812..63338e8f 100644 --- a/Makefile +++ b/Makefile @@ -1,62 +1,192 @@ -# Makefile: tuned for i386/MMX system only -# For ppc append -# SRCS: core/ppc/mc.c core/ppc/pixel.c -# Defines: HAVE_PPC -# CFLAGS: -faltivec -# -PFLAGS=-DARCH_X86 -DHAVE_MMXEXT -DHAVE_SSE2 -CC=gcc -CFLAGS=-g -Wall -I. -DDEBUG -O4 -funroll-loops -D__X264__ -DHAVE_MALLOC_H $(PFLAGS) - -SRCS= core/mc.c core/predict.c core/pixel.c core/macroblock.c \ - core/frame.c core/dct.c core/cpu.c core/cabac.c \ - core/common.c core/mdate.c core/csp.c \ +# Makefile + +include config.mak + +SRCS = common/mc.c common/predict.c common/pixel.c common/macroblock.c \ + common/frame.c common/dct.c common/cpu.c common/cabac.c \ + common/common.c common/mdate.c common/csp.c common/set.c \ + common/quant.c \ encoder/analyse.c encoder/me.c encoder/ratecontrol.c \ - encoder/set.c encoder/macroblock.c encoder/cabac.c encoder/cavlc.c \ - encoder/encoder.c encoder/eval.c \ - core/i386/mc-c.c core/i386/dct-c.c core/i386/predict.c \ - x264.c + encoder/set.c encoder/macroblock.c encoder/cabac.c \ + encoder/cavlc.c encoder/encoder.c encoder/eval.c + +SRCCLI = x264.c matroska.c muxers.c + +# Visualization sources +ifeq ($(VIS),yes) +SRCS += common/visualize.c common/display-x11.c +endif -AS= nasm -# for linux -ASFLAGS=-f elf $(PFLAGS) -# for cygwin -#ASFLAGS=-f gnuwin32 -DPREFIX +# MMX/SSE optims +ifeq ($(ARCH),X86) +ifneq ($(AS),) +SRCS += common/i386/mc-c.c common/i386/predict-c.c +ASMSRC = common/i386/dct-a.asm common/i386/cpu-a.asm \ + common/i386/pixel-a.asm common/i386/mc-a.asm \ + common/i386/mc-a2.asm common/i386/predict-a.asm \ + common/i386/pixel-sse2.asm common/i386/quant-a.asm \ + common/i386/deblock-a.asm +OBJASM = $(ASMSRC:%.asm=%.o) +ASFLAGS += -Icommon/i386/ +endif +endif -ASMSRC= core/i386/dct.asm core/i386/cpu.asm core/i386/pixel.asm core/i386/mc.asm -OBJASM= $(ASMSRC:%.asm=%.o) +# MMX/SSE optims +ifeq ($(ARCH),X86_64) +ifneq ($(AS),) +SRCS += common/i386/mc-c.c common/i386/predict-c.c +ASMSRC = common/amd64/dct-a.asm common/amd64/cpu-a.asm \ + common/amd64/pixel-a.asm common/amd64/mc-a.asm \ + common/amd64/mc-a2.asm common/amd64/predict-a.asm \ + common/amd64/pixel-sse2.asm common/amd64/quant-a.asm \ + common/amd64/deblock-a.asm +OBJASM = $(ASMSRC:%.asm=%.o) +ASFLAGS += -Icommon/amd64 +endif +endif + +# AltiVec optims +ifeq ($(ARCH),PPC) +ALTIVECSRC += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \ + common/ppc/quant.c common/ppc/deblock.c \ + common/ppc/predict.c +SRCS += $(ALTIVECSRC) +$(ALTIVECSRC:%.c=%.o): CFLAGS += $(ALTIVECFLAGS) +endif + +# VIS optims +ifeq ($(ARCH),UltraSparc) +ASMSRC += common/sparc/pixel.asm +OBJASM = $(ASMSRC:%.asm=%.o) +endif + +ifneq ($(HAVE_GETOPT_LONG),1) +SRCS += extras/getopt.c +endif OBJS = $(SRCS:%.c=%.o) +OBJCLI = $(SRCCLI:%.c=%.o) DEP = depend -default: $(DEP) x264 +.PHONY: all default fprofiled clean distclean install install-gtk uninstall dox test testclean +all: default -libx264.a: $(OBJS) $(OBJASM) +default: $(DEP) x264$(EXE) + +libx264.a: .depend $(OBJS) $(OBJASM) ar rc libx264.a $(OBJS) $(OBJASM) + ranlib libx264.a + +$(SONAME): .depend $(OBJS) $(OBJASM) + $(CC) -shared -o $@ $(OBJS) $(OBJASM) -Wl,-soname,$(SONAME) $(LDFLAGS) -x264: libx264.a x264.o - $(CC) $(CFLAGS) -o x264 x264.o libx264.a -lm +x264$(EXE): $(OBJCLI) libx264.a + $(CC) -o $@ $+ $(LDFLAGS) -checkasm: testing/checkasm.c libx264.a - $(CC) $(CFLAGS) -o checkasm $< libx264.a -lm +libx264gtk.a: muxers.o libx264.a + $(MAKE) -C gtk +checkasm: tools/checkasm.o libx264.a + $(CC) -o $@ $+ $(LDFLAGS) + +common/amd64/*.o: common/amd64/amd64inc.asm +common/i386/*.o: common/i386/i386inc.asm %.o: %.asm $(AS) $(ASFLAGS) -o $@ $< +# delete local/anonymous symbols, so they don't show up in oprofile + -@ strip -x $@ + +.depend: config.mak + rm -f .depend +# Hacky - because gcc 2.9x doesn't have -MT + $(foreach SRC, $(SRCS) $(SRCCLI), ( $(ECHON) "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(ALTIVECFLAGS) $(SRC) -MM -g0 ) 1>> .depend;) -.depend: $(SRCS) x264.c - $(CC) -MM $(CFLAGS) $(SRCS) x264.c 1> .depend +config.mak: $(wildcard .svn/entries */.svn/entries */*/.svn/entries) + ./configure $(CONFIGURE_ARGS) depend: .depend ifneq ($(wildcard .depend),) include .depend endif +SRC2 = $(SRCS) $(SRCCLI) +# These should cover most of the important codepaths +OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac --pre-scenecut --direct temporal --no-ssim --no-psnr +OPT1 = --crf 16 -b2 -m3 -r3 --me hex -8 --direct spatial --no-dct-decimate +OPT2 = --crf 26 -b2 -m5 -r2 --me hex -8 -w --cqm jvt --nr 100 +OPT3 = --crf 18 -b3 -m7 -r5 --me umh -8 -t1 -A all --mixed-refs --b-rdo -w --b-pyramid --direct auto --bime --no-fast-pskip +OPT4 = --crf 22 -b3 -m6 -r3 --me esa -8 -t2 -A all --mixed-refs --b-rdo --bime + +ifeq (,$(VIDS)) +fprofiled: + @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."' + @echo 'where infiles are anything that x264 understands,' + @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.' +else +fprofiled: + $(MAKE) clean + mv config.mak config.mak2 + sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak + $(MAKE) x264$(EXE) + $(foreach V, $(VIDS), $(foreach I, 0 1 2 3 4, ./x264$(EXE) $(OPT$I) $(V) --progress -o $(DEVNULL) ;)) + rm -f $(SRC2:%.c=%.o) + sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak + $(MAKE) + rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno) + mv config.mak2 config.mak +endif + clean: - rm -f $(OBJS) $(OBJASM) *.a x264.o .depend x264 TAGS + rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(SONAME) *.a x264 x264.exe .depend TAGS + rm -f checkasm checkasm.exe tools/checkasm.o + rm -f tools/avc2avi tools/avc2avi.exe tools/avc2avi.o + rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno) + - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak + $(MAKE) -C gtk clean distclean: clean + rm -f config.mak config.h x264.pc + rm -rf test/ + $(MAKE) -C gtk distclean + +install: x264 $(SONAME) + install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir) + install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig + install -m 644 x264.h $(DESTDIR)$(includedir) + install -m 644 libx264.a $(DESTDIR)$(libdir) + install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig + install x264 $(DESTDIR)$(bindir) + ranlib $(DESTDIR)$(libdir)/libx264.a + $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.so) + $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir)) + +install-gtk: libx264gtk.a + $(MAKE) -C gtk install + +uninstall: + rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a + rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc + $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.so) + $(MAKE) -C gtk uninstall etags: TAGS TAGS: etags $(SRCS) + +dox: + doxygen Doxyfile + +ifeq (,$(VIDS)) +test: + @echo 'usage: make test VIDS="infile1 infile2 ..."' + @echo 'where infiles are anything that x264 understands,' + @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.' +else +test: + perl tools/regression-test.pl --version=head,current --options='$(OPT0)' --options='$(OPT1)' --options='$(OPT2)' $(VIDS:%=--input=%) +endif + +testclean: + rm -f test/*.log test/*.264 + $(foreach DIR, $(wildcard test/x264-r*/), cd $(DIR) ; make clean ; cd ../.. ;)