Makefile
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. # ***************************************************************************
  2. # Makefile : Build vlc-contrib files
  3. # ***************************************************************************
  4. # Copyright (C) 2003-2009 the VideoLAN team
  5. # $Id$
  6. # Authors: Christophe Massiot <massiot@via.ecp.fr>
  7. #          Derk-Jan Hartman <hartman at videolan dot org>
  8. #          Christophe Mutricy <xtophe at videolan dot org>
  9. #          Felix Paul Kühne <fkuehne at videolan dot org>
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or    
  14. # (at your option) any later version.
  15. #
  16. # This program is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. # GNU General Public License for more details.
  20. #
  21. # You should have received a copy of the GNU General Public License
  22. # along with this program; if not, write to the Free Software
  23. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24. # ***************************************************************************
  25. include ./config.mak
  26. BUILDDIRS = bin doc etc include info lib man sbin share tmp gecko-sdk Sparkle
  27. ifdef HAVE_DARWIN_OS
  28. TARGETALL=using-bin
  29. else
  30. TARGETALL=using-src
  31. endif
  32. all: $(TARGETALL)
  33. using-src:
  34. $(MAKE) -C src
  35. ifdef HAVE_DARWIN_10
  36. (cd $(PREFIX)/lib && sed -e 's%/usr/lib/libiconv.la%$(PREFIX)/lib/libiconv.la%g' -i.orig *.la && rm -f *.la.orig)
  37. endif
  38. # shortcut
  39. src: using-src
  40. ifdef HAVE_DARWIN_OS
  41. CONTRIBREV=1.0.3
  42. contrib-macosx-$(ARCH)-$(CONTRIBREV).tar.bz2:
  43. $(WGET) http://downloads.videolan.org/pub/videolan/testing/contrib/$@
  44. using-bin: contrib-macosx-$(ARCH)-$(CONTRIBREV).tar.bz2
  45. @if test -d tmp; then 
  46. echo "Move away ./tmp, it's in the way" ; 
  47. exit 1 ; 
  48. fi
  49. mkdir tmp
  50. (cd tmp && tar jxvf ../$<)
  51. ./change_prefix.sh tmp @@CONTRIB_PREFIX@@  $(PREFIX)
  52. (cd tmp && find . -type d) | while read dir; do mkdir -p -- "$$dir"; done
  53. (cd tmp && find . -not -type d) | while read i; do mv -f -- tmp/"$$i" "$$i"; done
  54. rm -rf tmp
  55.     # libiconv.la is no longer present on Snow Leopard, so fix possible references to it, which would
  56.     # result in linking issues
  57. ifdef HAVE_DARWIN_10
  58. (cd $(PREFIX)/lib && sed -e 's%/usr/lib/libiconv.la%$(PREFIX)/lib/libiconv.la%g' -i.orig *.la && rm -f *.la.orig)
  59. (cd $(PREFIX)/src && $(MAKE) .iconv)
  60. endif
  61. endif
  62. clean-src:
  63. rm -rf $(BUILDDIRS)
  64. $(MAKE) -C src clean-src
  65. clean-bin:
  66. rm -rf $(BUILDDIRS)
  67. $(MAKE) -C src clean-dots
  68. clean:
  69. $(MAKE) clean-src
  70. rm -rf config.mak distro.mak
  71. bin: using-bin
  72. package-macosx:
  73. @if test -d tmp; then 
  74. echo "Move away ./tmp, it's in the way" ; 
  75. exit 1 ; 
  76. fi
  77. mkdir tmp
  78. tar cf - bin sbin include lib share/aclocal* share/autoconf* 
  79. share/automake* share/gettext* share/libtool* gecko-sdk 
  80. | (cd tmp; tar xf -)
  81. ./change_prefix.sh tmp $(PREFIX) @@CONTRIB_PREFIX@@
  82. (cd tmp; tar cf - .) | bzip2 -c > contrib-macosx.tar.bz2
  83. rm -rf tmp
  84. DISTDIR = usr/win32
  85. package-win32:
  86. @if test -d tmp; then 
  87. echo "Move away ./tmp, it's in the way" ; 
  88. exit 1 ; 
  89. fi
  90. mkdir -p tmp/$(DISTDIR)
  91. tar cf - --dereference bin sbin include lib share/aclocal*
  92. share/autoconf* share/qt4* 
  93. share/automake* share/gettext* gecko-sdk
  94. | (cd tmp/$(DISTDIR); tar xpf -)
  95. #kludge for live.com
  96. mkdir -p tmp/$(DISTDIR)/live.com
  97. for i in groupsock liveMedia UsageEnvironment BasicUsageEnvironment; do 
  98. mkdir -p  tmp/$(DISTDIR)/live.com/$$i/include; 
  99. cp -r src/live/$$i/include tmp/$(DISTDIR)/live.com/$$i; 
  100. cp src/live/$$i/lib$${i}.a  tmp/$(DISTDIR)/live.com/$$i; 
  101. done;
  102. # Change Prefix.
  103. ./change_prefix.sh tmp $(PREFIX) $(DISTDIR)
  104. # Hack for qt4
  105. (cd tmp/$(DISTDIR)/bin; mv uic.exe uic.ex; mv rcc.exe rcc.ex; mv moc.exe moc.ex)
  106. # Remove unused and potentially harmful files
  107. (cd tmp/$(DISTDIR)/bin; rm -rfv *.exe; chmod a+x *)
  108. # Hack for qt4
  109. (cd tmp/$(DISTDIR)/bin; mv uic.ex uic.exe; mv rcc.ex rcc.exe; mv moc.ex moc.exe)
  110. # Tar it.
  111. (cd tmp; tar cf - $(DISTDIR)) | bzip2 -c > contrib-`date +%Y%m%d`-win32-bin-gcc-`$(CC) --version|head -n 1|cut -f 3 -d ' '`-runtime-`/bin/echo -e "#include <_mingw.h>n__MINGW32_VERSION"|$(CC) -E -|grep -v ^#|grep -v ' '`-only.tar.bz2
  112. rm -rf tmp
  113. .PHONY: all clean-src clean-bin clean package-macosx package-win32