Makefile.am
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. ## Makefile.am for the main() function in the SDL library
  2. #
  3. # This is necessary because some platforms have special program
  4. # entry points, which require special application initialization.
  5. ARCH_SUBDIRS = $(srcdir)/beos 
  6.                $(srcdir)/epoc 
  7.                $(srcdir)/linux 
  8.                $(srcdir)/macos 
  9.                $(srcdir)/macosx 
  10.                $(srcdir)/win32
  11. # Build a separate library containing the main() entry point.
  12. lib_LIBRARIES = libSDLmain.a
  13. if TARGET_MACOSX
  14. MAINLIB_ARCH_SRCS = SDLMain.m SDLMain.h
  15. else
  16. MAINLIB_ARCH_SRCS = SDL_main.c
  17. endif
  18. libSDLmain_a_SOURCES = $(MAINLIB_ARCH_SRCS)
  19. # Build an internal library of any special app setup functions
  20. noinst_LTLIBRARIES = libarch.la
  21. if TARGET_BEOS
  22. ARCH_SRCS = SDL_BeApp.cc SDL_BeApp.h
  23. else
  24. ARCH_SRCS = 
  25. endif
  26. # Include the architecture-independent sources
  27. COMMON_SRCS = dummy.c
  28. libarch_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS)
  29. ## Let automake know that it shouldn't distribute linked sources
  30. BUILT_SOURCES = $(MAINLIB_ARCH_SRCS) $(ARCH_SRCS)
  31. ## Let automake know that it should remove these for distribution
  32. DISTCLEANFILES = $(MAINLIB_ARCH_SRCS) $(ARCH_SRCS)
  33. # The architecture specific directories need to be copied into place
  34. # when building a distribution.
  35. dist-hook:
  36. (cd $(distdir) && rm -f $(BUILT_SOURCES))
  37. cp -rp $(ARCH_SUBDIRS) $(distdir)
  38. (cd $(distdir) && rm -rf `find . -name CVS`)