x264.patch
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:1k
源码类别:

midi

开发平台:

Unix_Linux

  1. diff -ruN x264.orig/Makefile x264/Makefile
  2. --- x264.orig/Makefile Mon May 30 21:47:02 2005
  3. +++ x264/Makefile Sun Jun 26 03:09:05 2005
  4. @@ -40,7 +40,7 @@
  5.  OBJS = $(SRCS:%.c=%.o)
  6.  DEP  = depend
  7.  
  8. -default: $(DEP) x264$(EXE)
  9. +default: $(DEP) libx264.a
  10.  
  11.  libx264.a: .depend $(OBJS) $(OBJASM)
  12.   ar rc libx264.a $(OBJS) $(OBJASM)
  13. @@ -61,7 +61,7 @@
  14.  .depend: config.mak config.h
  15.   rm -f .depend
  16.  # Hacky - because gcc 2.9x doesn't have -MT
  17. - $(foreach SRC, $(SRCS) x264.c, ( echo -n "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(SRC) -MM -g0 ) 1>> .depend;)
  18. + $(foreach SRC, $(SRCS), ( echo -n "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(SRC) -MM -g0 ) 1>> .depend;)
  19.  
  20.  config.h: $(wildcard .svn/entries */.svn/entries */*/.svn/entries)
  21.   ./version.sh
  22. @@ -78,11 +78,10 @@
  23.  distclean: clean
  24.   rm -f config.mak vfw/build/cygwin/config.mak
  25.  
  26. -install: x264
  27. +install: libx264.a
  28.   install -d $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
  29.   install -m 644 x264.h $(DESTDIR)$(includedir)
  30.   install -m 644 libx264.a $(DESTDIR)$(libdir)
  31. - install x264 $(DESTDIR)$(bindir)
  32.  
  33.  etags: TAGS
  34.