Imported Upstream version 2.4.2
[platform/upstream/libtool.git] / tests / depdemo / Makefile.am
1 ## Makefile.am -- Process this file with automake to produce Makefile.in
2 ##
3 ##   Copyright (C) 2003, 2004, 2005 Free Software Foundation
4 ##   Written by Gary V. Vaughan, 2003
5 ##
6 ##   This file is part of GNU Libtool.
7 ##
8 ## GNU Libtool is free software; you can redistribute it and/or
9 ## modify it under the terms of the GNU General Public License as
10 ## published by the Free Software Foundation; either version 2 of
11 ## the License, or (at your option) any later version.
12 ##
13 ## GNU Libtool is distributed in the hope that it will be useful,
14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ## GNU General Public License for more details.
17 ##
18 ## You should have received a copy of the GNU General Public License
19 ## along with GNU Libtool; see the file COPYING.  If not, a copy
20 ## can be downloaded from  http://www.gnu.org/licenses/gpl.html,
21 ## or obtained by writing to the Free Software Foundation, Inc.,
22 ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 #####
24
25 AUTOMAKE_OPTIONS = no-dependencies foreign
26 ACLOCAL_AMFLAGS  = -I ../../libltdl/m4
27 AM_CPPFLAGS      = -I$(top_srcdir)/../..
28
29 SUBDIRS = l1 l2 l3 l4
30
31 EXTRA_DIST = sysdep.h
32
33 bin_PROGRAMS = depdemo depdemo_static
34
35 depdemo_SOURCES = main.c
36 depdemo_LDADD = $(top_builddir)/l1/libl1.la $(top_builddir)/l2/libl2.la \
37                 $(top_builddir)/l4/libl4.la
38 depdemo_DEPENDENCIES = $(top_builddir)/l1/libl1.la \
39                 $(top_builddir)/l2/libl2.la $(top_builddir)/l4/libl4.la
40
41 depdemo_static_SOURCES = $(depdemo_SOURCES)
42 depdemo_static_LDADD = $(depdemo_LDADD)
43 depdemo_static_DEPENDENCIES = $(depdemo_DEPENDENCIES)
44 depdemo_static_LDFLAGS = $(STATIC)
45
46 libtool: $(LIBTOOL_DEPS)
47         $(SHELL) ./config.status --recheck
48
49 # Workaround a bug in Autoconf-2.61 and earlier that don't clean up
50 # file droppings left by many compilers:
51 distclean-local:
52         ac_files="a.out.* a.exe.* a_out.exe.* b.out.* conftest.*"; \
53         for ac_file in $$ac_files; do \
54           case $$ac_file in \
55             *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) rm -rf $$ac_file ;; \
56           esac; \
57         done