1EXTRA_DIST = 2lib_LTLIBRARIES = 3noinst_LTLIBRARIES = 4 5include canon/Makefile-files 6include fuji/Makefile-files 7include olympus/Makefile-files 8include 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. 14lib_LTLIBRARIES += libexif.la 15libexif_la_LDFLAGS = \ 16 -export-symbols $(srcdir)/libexif.sym \ 17 -no-undefined -version-info @LIBEXIF_VERSION_INFO@ 18libexif_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 33libexif_la_DEPENDENCIES = \ 34 $(srcdir)/libexif.sym \ 35 libmnote-canon.la \ 36 libmnote-fuji.la \ 37 libmnote-olympus.la \ 38 libmnote-pentax.la 39libexif_la_LIBADD = \ 40 $(LTLIBINTL) \ 41 libmnote-canon.la \ 42 libmnote-fuji.la \ 43 libmnote-olympus.la \ 44 libmnote-pentax.la 45 46libexifincludedir = $(includedir)/libexif 47libexifinclude_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 63EXTRA_DIST += exif-system.h exif.h 64 65EXTRA_DIST += libexif.sym 66 67DISTCLEANFILES = _stdint.h 68