Home | History | Annotate | Download | only in libexif
      1 EXTRA_DIST =
      2 lib_LTLIBRARIES =
      3 noinst_LTLIBRARIES =
      4 
      5 include canon/Makefile-files
      6 include fuji/Makefile-files
      7 include olympus/Makefile-files
      8 include pentax/Makefile-files
      9 
     10 # The -no-undefined makes it possible to build DLLs for Windows,
     11 # or shared libraries for Tru64 or AIX (according to the autobook
     12 # chapter on "Portable Library Design"). It doesn't seem to hurt
     13 # elsewhere, so we can leave it in.
     14 lib_LTLIBRARIES += libexif.la
     15 libexif_la_LDFLAGS = \
     16 	-export-symbols $(srcdir)/libexif.sym \
     17 	-no-undefined -version-info @LIBEXIF_VERSION_INFO@
     18 libexif_la_SOURCES =		\
     19 	exif-byte-order.c	\
     20 	exif-content.c		\
     21 	exif-data.c		\
     22 	exif-entry.c		\
     23 	exif-format.c		\
     24 	exif-ifd.c		\
     25 	exif-loader.c		\
     26 	exif-log.c		\
     27 	exif-mem.c		\
     28 	exif-mnote-data.c	\
     29 	exif-mnote-data-priv.h	\
     30 	exif-tag.c		\
     31 	exif-utils.c		\
     32 	i18n.h
     33 libexif_la_DEPENDENCIES = \
     34 	$(srcdir)/libexif.sym \
     35 	libmnote-canon.la		\
     36 	libmnote-fuji.la		\
     37 	libmnote-olympus.la	\
     38 	libmnote-pentax.la
     39 libexif_la_LIBADD =			\
     40 	$(LTLIBINTL)			\
     41 	libmnote-canon.la		\
     42 	libmnote-fuji.la	\
     43 	libmnote-olympus.la	\
     44 	libmnote-pentax.la
     45 
     46 libexifincludedir = $(includedir)/libexif
     47 libexifinclude_HEADERS = 	\
     48 	exif-byte-order.h	\
     49 	exif-content.h		\
     50 	exif-data.h		\
     51 	exif-data-type.h \
     52 	exif-entry.h		\
     53 	exif-format.h		\
     54 	exif-ifd.h		\
     55 	exif-loader.h		\
     56 	exif-log.h		\
     57 	exif-mem.h		\
     58 	exif-mnote-data.h	\
     59 	exif-tag.h		\
     60 	exif-utils.h		\
     61 	_stdint.h
     62 
     63 EXTRA_DIST += exif-system.h exif.h
     64 
     65 EXTRA_DIST += libexif.sym
     66 
     67 DISTCLEANFILES = _stdint.h
     68