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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. ## Makefile.am for the SDL thread library
  2. noinst_LTLIBRARIES = libthread.la
  3. ARCH_SUBDIRS = $(srcdir)/generic
  4.                $(srcdir)/amigaos
  5.                $(srcdir)/beos
  6.                $(srcdir)/bsdi
  7.                $(srcdir)/epoc
  8.                $(srcdir)/irix
  9.                $(srcdir)/linux
  10.                $(srcdir)/pth
  11.                $(srcdir)/win32
  12. # Older versions of Linux require an asm clone() implementation
  13. if USE_CLONE
  14. THREAD_ASM_SRC = clone.S
  15. else
  16. THREAD_ASM_SRC =
  17. endif
  18. COMMON_SRCS =
  19. SDL_systhread.h
  20. SDL_thread.c
  21. SDL_thread_c.h
  22. ARCH_SRCS = 
  23. SDL_systhread.c
  24. SDL_systhread_c.h
  25. SDL_sysmutex.c
  26. SDL_sysmutex_c.h
  27. SDL_syssem.c
  28. SDL_syssem_c.h
  29. SDL_syscond.c
  30. SDL_syscond_c.h
  31. $(THREAD_ASM_SRC)
  32. libthread_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS)
  33. ## Let automake know that it shouldn't distribute linked sources
  34. BUILT_SOURCES = $(ARCH_SRCS)
  35. ## Let automake know that it should remove these for distribution
  36. DISTCLEANFILES = $(ARCH_SRCS)
  37. # The architecture specific directories need to be copied into place
  38. # when building a distribution.
  39. dist-hook:
  40. (cd $(distdir) && rm -f $(BUILT_SOURCES))
  41. cp -rp $(ARCH_SUBDIRS) $(distdir)
  42. (cd $(distdir) && rm -rf `find . -name CVS`)