blob: 4b7526b652bf542518dc759172e70c29e8ac356d [file] [log] [blame]
brynercb91a2f2006-08-25 21:14:45 +00001## Process this file with automake to produce Makefile.in
2
mmentovai425d2562006-08-30 20:05:05 +00003# Copyright (C) 2006 Google Inc.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
brynercb91a2f2006-08-25 21:14:45 +000016
brynercb91a2f2006-08-25 21:14:45 +000017
mmentovai425d2562006-08-30 20:05:05 +000018## Documentation
brynercb91a2f2006-08-25 21:14:45 +000019docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION)
brynercb91a2f2006-08-25 21:14:45 +000020
mmentovai425d2562006-08-30 20:05:05 +000021dist_doc_DATA = \
22 AUTHORS \
23 COPYING \
24 ChangeLog \
25 INSTALL \
26 NEWS \
27 README
brynercb91a2f2006-08-25 21:14:45 +000028
mmentovai425d2562006-08-30 20:05:05 +000029
30## Libraries
31lib_LTLIBRARIES = src/libairbag.la
32
33src_libairbag_la_SOURCES = \
34 src/processor/source_line_resolver.cc \
35 src/processor/source_line_resolver.h
36
37
38## Tests
39TESTS = src/processor/source_line_resolver_unittest
brynercb91a2f2006-08-25 21:14:45 +000040TESTS_ENVIRONMENT =
41check_SCRIPTS =
brynercb91a2f2006-08-25 21:14:45 +000042
mmentovai425d2562006-08-30 20:05:05 +000043src_processor_source_line_resolver_unittest_SOURCES = \
44 src/processor/source_line_resolver_unittest.cc
45src_processor_source_line_resolver_unittest_LDADD = \
46 src/processor/source_line_resolver.lo
brynercb91a2f2006-08-25 21:14:45 +000047
48
mmentovai425d2562006-08-30 20:05:05 +000049## Non-installables
brynercb91a2f2006-08-25 21:14:45 +000050noinst_PROGRAMS = $(TESTS)
mmentovai425d2562006-08-30 20:05:05 +000051noinst_SCRIPTS = $(check_SCRIPTS)
brynercb91a2f2006-08-25 21:14:45 +000052
brynercb91a2f2006-08-25 21:14:45 +000053
mmentovai425d2562006-08-30 20:05:05 +000054## Additional files to be included in a source distribution
55EXTRA_DIST = \
56 $(SCRIPTS) \
57 src/processor/testdata/module1.out \
58 src/processor/testdata/module2.out \
59 src/processor/testdata/module3_bad.out
brynercb91a2f2006-08-25 21:14:45 +000060
mmentovai425d2562006-08-30 20:05:05 +000061
62## Additional rules
brynercb91a2f2006-08-25 21:14:45 +000063libtool: $(LIBTOOL_DEPS)
64 $(SHELL) ./config.status --recheck