Build variable cleanup:
[platform/upstream/libexif.git] / libexif / Makefile.am
1 SUBDIRS = canon olympus pentax
2
3 lib_LTLIBRARIES = libexif.la
4
5 libexif_la_LDFLAGS = -version-info @LIBEXIF_VERSION_INFO@
6 libexif_la_SOURCES =            \
7         exif-byte-order.c       \
8         exif-content.c          \
9         exif-data.c             \
10         exif-entry.c            \
11         exif-format.c           \
12         exif-ifd.c              \
13         exif-loader.c           \
14         exif-log.c              \
15         exif-mem.c              \
16         exif-mnote-data.c       \
17         exif-mnote-data-priv.h  \
18         exif-tag.c              \
19         exif-utils.c            \
20         i18n.h
21 libexif_la_LIBADD = -lm                 \
22         canon/libmnote-canon.la         \
23         olympus/libmnote-olympus.la     \
24         pentax/libmnote-pentax.la
25
26 libexifincludedir = $(includedir)/libexif
27 libexifinclude_HEADERS =        \
28         exif-byte-order.h       \
29         exif-content.h          \
30         exif-data.h             \
31         exif-entry.h            \
32         exif-format.h           \
33         exif-ifd.h              \
34         exif-loader.h           \
35         exif-log.h              \
36         exif-mem.h              \
37         exif-mnote-data.h       \
38         exif-tag.h              \
39         exif-utils.h            \
40         _stdint.h
41
42 pkgconfigdir = $(libdir)/pkgconfig
43 pkgconfig_DATA = libexif.pc
44 EXTRA_DIST = libexif.pc.in
45
46 DISTCLEANFILES = _stdint.h
47