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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. ## Makefile.am for the SDL timer library
  2. noinst_LTLIBRARIES = libtimer.la
  3. ARCH_SUBDIRS = $(srcdir)/amigaos 
  4.                $(srcdir)/beos 
  5.                $(srcdir)/epoc 
  6.                $(srcdir)/linux 
  7.                $(srcdir)/macos 
  8.                $(srcdir)/mint 
  9.                $(srcdir)/win32
  10. # Include the architecture-independent sources
  11. COMMON_SRCS = SDL_timer.c SDL_timer_c.h SDL_systimer.h
  12. # Include the architecture-specific sources
  13. if TARGET_MINT
  14. ARCH_SRCS = SDL_systimer.c SDL_vbltimer.S SDL_vbltimer_s.h
  15. else
  16. ARCH_SRCS = SDL_systimer.c
  17. endif
  18. libtimer_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS)
  19. ## Let automake know that it shouldn't distribute linked sources
  20. BUILT_SOURCES = $(ARCH_SRCS)
  21. ## Let automake know that it should remove these for distribution
  22. DISTCLEANFILES = $(ARCH_SRCS)
  23. # The architecture specific directories need to be copied into place
  24. # when building a distribution.
  25. dist-hook:
  26. (cd $(distdir) && rm -f $(BUILT_SOURCES))
  27. cp -rp $(ARCH_SUBDIRS) $(distdir)
  28. (cd $(distdir) && rm -rf `find . -name CVS`)