1# Simple example programs 2# 3# Copyright (C) 2008-2009 Dan Fandrich <dan@coneharvesters.com> 4# SPDX-License-Identifier: LGPL-2.0-or-later 5 6check_PROGRAMS = photographer thumbnail write-exif 7 8# Example programs with dependencies other than plain libexif 9COMPLICATED_EXAMPLES = cam_features.c 10 11# Build just the simple examples as a sanity check, but include them all in 12# the source archive 13 14EXTRA_DIST = $(COMPLICATED_EXAMPLES) 15LDADD = $(top_builddir)/libexif/libexif.la 16