home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / ImageMagick-4.0.6.tar.gz / ImageMagick-4.0.6.tar / ImageMagick-4.0.6 / xlib / Makefile.am < prev    next >
Makefile  |  1998-03-28  |  2KB  |  61 lines

  1. #
  2. #  Automake Makefile for the X11 stubs library
  3. #
  4. #  Copyright 1998 E. I. du Pont de Nemours and Company
  5. #
  6. #  Permission is hereby granted, free of charge, to any person obtaining a
  7. #  copy of this software and associated documentation files ("ImageMagick"),
  8. #  to deal in ImageMagick without restriction, including without limitation 
  9. #  the rights to use, copy, modify, merge, publish, distribute, sublicense, 
  10. #  and/or sell copies of ImageMagick, and to permit persons to whom the 
  11. #  ImageMagick is furnished to do so, subject to the following conditions:
  12. #   
  13. #  The above copyright notice and this permission notice shall be included in 
  14. #  all copies or substantial portions of ImageMagick. 
  15. #   
  16. #  The software is provided "as is", without warranty of any kind, express or 
  17. #  implied, including but not limited to the warranties of merchantability, 
  18. #  fitness for a particular purpose and noninfringement.In no event shall 
  19. #  E. I. du Pont de Nemours and Company be liable for any claim, damages or 
  20. #  other liability, whether in an action of contract, tort or otherwise,
  21. #  arising from, out of or in connection with ImageMagick or the use or other 
  22. #  dealings in ImageMagick. 
  23. #   
  24. #  Except as contained in this notice, the name of the E. I. du Pont de 
  25. #  Nemours and Company shall not be used in advertising or otherwise to 
  26. #  promote the sale, use or other dealings in ImageMagick without prior 
  27. #  written authorization from the E. I. du Pont de Nemours and Company. 
  28. #
  29. #  This file is currently maintained by Bob Friesenhahn,
  30. #  bfriesen@simple.dallas.tx.us
  31.  
  32. # Don't require all the GNU mandated files
  33. # Remove comment from no-dependencies for distributions compatable with
  34. # traditional 'make'
  35. AUTOMAKE_OPTIONS = 1.2 foreign # no-dependencies
  36.  
  37. lib_LTLIBRARIES = @X11STUBSLANAME@
  38.  
  39. # Any library that is auto-configured into lib_LTLIBRARIES must be listed
  40. # in EXTRA_LTLIBRARIES so that Automake can generate rules to build it.
  41. # Furthermore, Automake does not assume a -rpath argument for such libraries
  42. # so it must be added explicitly.
  43. EXTRA_LTLIBRARIES = libX11_stubs.la
  44. libX11_stubs_la_SOURCES = X11_stubs.c
  45. libX11_stubs_la_LDFLAGS = -rpath $(libdir)
  46.  
  47. DISTDIRS = X11 unix
  48. dist-hook:
  49.     ( \
  50.       builddir=`pwd` ; \
  51.       cd $(srcdir) && \
  52.       ( \
  53.         for dir in $(DISTDIRS) ; do \
  54.           find $$dir -depth -print | egrep -v '(~$$)' | cpio -pdum $$builddir/$(distdir) 2> /dev/null ; \
  55.         done \
  56.       ) \
  57.     )
  58.  
  59. # Since we are building a library, no need for LIBS
  60. LIBS =
  61.