X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=Makefile;h=0b43a3e006bd3dca842fa8bc36fbb5cea09ff948;hb=15c02c2d10fcd532d873d08ac929d8f8cae694f9;hp=ea6edd496e86ac21dae24d7068886448ffcf3816;hpb=025f01dba74e6f92aa282e01cafeb8ec841af3e7;p=x264 diff --git a/Makefile b/Makefile index ea6edd49..0b43a3e0 100644 --- a/Makefile +++ b/Makefile @@ -6,32 +6,40 @@ all: default 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/set.c \ - common/quant.c common/vlc.c \ + common/common.c common/mdate.c common/rectangle.c \ + common/set.c common/quant.c common/deblock.c common/vlc.c \ + common/mvpred.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/lookahead.c -SRCCLI = x264.c input/yuv.c input/y4m.c output/raw.c \ +SRCCLI = x264.c input/timecode.c \ + input/yuv.c input/y4m.c output/raw.c \ output/matroska.c output/matroska_ebml.c \ output/flv.c output/flv_bytestream.c -MUXERS := $(shell grep -E "(IN|OUT)PUT" config.h) +SRCSO = -# Optional muxer module sources -ifneq ($(findstring VFW_INPUT, $(MUXERS)),) -SRCCLI += input/vfw.c -endif +CONFIG := $(shell cat config.h) -ifneq ($(findstring AVS_INPUT, $(MUXERS)),) +# Optional muxer module sources +ifneq ($(findstring AVS_INPUT, $(CONFIG)),) SRCCLI += input/avs.c endif -ifneq ($(findstring HAVE_PTHREAD, $(CFLAGS)),) +ifneq ($(findstring HAVE_PTHREAD, $(CONFIG)),) SRCCLI += input/thread.c endif -ifneq ($(findstring MP4_OUTPUT, $(MUXERS)),) +ifneq ($(findstring LAVF_INPUT, $(CONFIG)),) +SRCCLI += input/lavf.c +endif + +ifneq ($(findstring FFMS_INPUT, $(CONFIG)),) +SRCCLI += input/ffms.c +endif + +ifneq ($(findstring MP4_OUTPUT, $(CONFIG)),) SRCCLI += output/mp4.c endif @@ -42,8 +50,8 @@ endif # MMX/SSE optims ifneq ($(AS),) -X86SRC0 = cabac-a.asm dct-a.asm deblock-a.asm mc-a.asm mc-a2.asm \ - pixel-a.asm predict-a.asm quant-a.asm sad-a.asm \ +X86SRC0 = const-a.asm cabac-a.asm dct-a.asm deblock-a.asm mc-a.asm \ + mc-a2.asm pixel-a.asm predict-a.asm quant-a.asm sad-a.asm \ cpu-a.asm dct-32.asm X86SRC = $(X86SRC0:%=common/x86/%) @@ -69,10 +77,12 @@ endif # AltiVec optims ifeq ($(ARCH),PPC) +ifneq ($(AS),) SRCS += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \ common/ppc/quant.c common/ppc/deblock.c \ common/ppc/predict.c endif +endif # NEON optims ifeq ($(ARCH),ARM) @@ -92,11 +102,18 @@ OBJASM = $(ASMSRC:%.asm=%.o) endif ifneq ($(HAVE_GETOPT_LONG),1) -SRCS += extras/getopt.c +SRCCLI += extras/getopt.c +endif + +ifneq ($(SONAME),) +ifeq ($(SYS),MINGW) +SRCSO += x264dll.c +endif endif OBJS = $(SRCS:%.c=%.o) OBJCLI = $(SRCCLI:%.c=%.o) +OBJSO = $(SRCSO:%.c=%.o) DEP = depend .PHONY: all default fprofiled clean distclean install uninstall dox test testclean @@ -107,11 +124,11 @@ libx264.a: .depend $(OBJS) $(OBJASM) $(AR) rc libx264.a $(OBJS) $(OBJASM) $(RANLIB) libx264.a -$(SONAME): .depend $(OBJS) $(OBJASM) - $(CC) -shared -o $@ $(OBJS) $(OBJASM) $(SOFLAGS) $(LDFLAGS) +$(SONAME): .depend $(OBJS) $(OBJASM) $(OBJSO) + $(CC) -shared -o $@ $(OBJS) $(OBJASM) $(OBJSO) $(SOFLAGS) $(LDFLAGS) -x264$(EXE): $(OBJCLI) libx264.a - $(CC) -o $@ $+ $(LDFLAGS) +x264$(EXE): $(OBJCLI) libx264.a + $(CC) -o $@ $+ $(LDFLAGS) $(LDFLAGSCLI) checkasm: tools/checkasm.o libx264.a $(CC) -o $@ $+ $(LDFLAGS) @@ -125,8 +142,8 @@ checkasm: tools/checkasm.o libx264.a -@ $(STRIP) -x $@ # delete local/anonymous symbols, so they don't show up in oprofile .depend: config.mak - rm -f .depend - $(foreach SRC, $(SRCS) $(SRCCLI), $(CC) $(CFLAGS) $(ALTIVECFLAGS) $(SRC) -MT $(SRC:%.c=%.o) -MM -g0 1>> .depend;) + @rm -f .depend + @$(foreach SRC, $(SRCS) $(SRCCLI) $(SRCSO), $(CC) $(CFLAGS) $(SRC) -MT $(SRC:%.c=%.o) -MM -g0 1>> .depend;) config.mak: ./configure @@ -167,18 +184,20 @@ fprofiled: endif clean: - rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(SONAME) *.a x264 x264.exe .depend TAGS + rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(OBJSO) $(SONAME) *.a x264 x264.exe .depend TAGS rm -f checkasm checkasm.exe tools/checkasm.o tools/checkasm-a.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 distclean: clean - rm -f config.mak config.h x264.pc + rm -f config.mak config.h config.log x264.pc rm -rf test/ install: x264$(EXE) $(SONAME) - install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir) - install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig + install -d $(DESTDIR)$(bindir) + install -d $(DESTDIR)$(includedir) + install -d $(DESTDIR)$(libdir) + install -d $(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 @@ -187,14 +206,14 @@ install: x264$(EXE) $(SONAME) ifeq ($(SYS),MINGW) $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(bindir)) else - $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX)) + $(if $(SONAME), ln -f -s $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX)) $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir)) endif $(if $(IMPLIBNAME), install -m 644 $(IMPLIBNAME) $(DESTDIR)$(libdir)) uninstall: rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a - rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc + rm -f $(DESTDIR)$(bindir)/x264$(EXE) $(DESTDIR)$(libdir)/pkgconfig/x264.pc $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX)) etags: TAGS