1## Makefile.am -- an automake template for Makefile.in file 2## Copyright (C) 2009 Chris Bagwell and Sane Developers. 3## 4## This file is part of the "Sane" build infra-structure. See 5## included LICENSE file for license information. 6AM_CPPFLAGS += -I. -I$(top_builddir)/include -I$(top_srcdir)/include 7 8noinst_LTLIBRARIES = liblib.la 9 10liblib_la_SOURCES = md5.c 11liblib_la_CPPFLAGS = -I$(top_srcdir)/include 12liblib_la_LIBADD = $(LTALLOCA) $(LTLIBOBJS) 13