~matttbe/ubuntu/raring/geis/lp1077376

« back to all changes in this revision

Viewing changes to libs/geis-util/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Chase Douglas
  • Date: 2012-07-30 08:51:42 UTC
  • Revision ID: package-import@ubuntu.com-20120730085142-jrc33ygjvt0ob1wl
Tags: upstream-2.2.11
ImportĀ upstreamĀ versionĀ 2.2.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# @file libs/geis-util/Makefile.am
 
3
# @brief automake recipe for the GEIS utilities convenience library
 
4
#
 
5
# Copyright 2011 Canonical Ltd.
 
6
#
 
7
# This program is free software: you can redistribute it and/or modify it 
 
8
# under the terms of the GNU General Public License version 3, as published 
 
9
# by the Free Software Foundation.
 
10
#
 
11
# This program is distributed in the hope that it will be useful, but 
 
12
# WITHOUT ANY WARRANTY; without even the implied warranties of 
 
13
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
 
14
# PURPOSE.  See the GNU General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License along 
 
17
# with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
 
 
20
noinst_LTLIBRARIES = libgeis-util.la
 
21
 
 
22
dist_libgeis_util_la_SOURCES = \
 
23
        geis_bag.h      geis_bag.c \
 
24
        geis_logging.h  geis_logging.c
 
25
 
 
26
libgeis_util_la_CPPFLAGS = \
 
27
        -I$(top_srcdir) \
 
28
        -I$(top_srcdir)/include \
 
29
        -I$(top_srcdir)/libgeis
 
30
 
 
31