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

midi

开发平台:

Unix_Linux

  1. # Common code for VLC modules/.../Makefile.am
  2. #
  3. # Copyright (C) 2005-2007 the VideoLAN team
  4. # Copyright (C) 2005-2008 Rémi Denis-Courmont
  5. #
  6. # Authors: Sam Hocevar <sam@zoy.org>
  7. NULL =
  8. SUFFIXES =
  9. libvlcdir = $(vlclibdir)/$(basedir)
  10. EXTRA_DIST = Modules.am
  11. BUILT_SOURCES =
  12. CLEANFILES = $(BUILT_SOURCES)
  13. LTLIBVLCCORE = $(top_builddir)/src/libvlccore.la
  14. AM_CFLAGS = `$(VLC_CONFIG) --cflags plugin $@`
  15. AM_CXXFLAGS = `$(VLC_CONFIG) --cxxflags plugin $@`
  16. AM_OBJCFLAGS = `$(VLC_CONFIG) --objcflags plugin $@`
  17. AM_LDFLAGS = -rpath '$(libvlcdir)' 
  18. -avoid-version -module 
  19. -export-symbol-regex ^vlc_entry 
  20. -shrext $(LIBEXT) 
  21. -no-undefined 
  22.  `$(VLC_CONFIG) --ldflags plugin $@`
  23. AM_LIBADD = `$(VLC_CONFIG) -libs plugin $@` 
  24. $(LTLIBVLCCORE) $(top_builddir)/compat/libcompat.la
  25. include $(srcdir)/Modules.am
  26. if MAINTAINER_MODE
  27. $(srcdir)/Makefile.am: $(srcdir)/Modules.am $(top_srcdir)/modules/genmf
  28. cd $(top_srcdir) && $(SHELL) modules/genmf $(dir)
  29. endif
  30. nice:
  31. $(top_builddir)/compile
  32. .PHONY: nice