1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am,v 1.4 2002/06/01 14:09:50 gary Exp $
4
5AUTOMAKE_OPTIONS = no-dependencies foreign
6
7EXTRA_DIST = acinclude.m4
8
9noinst_LTLIBRARIES = libfoo.la
10lib_LTLIBRARIES = libbaz.la
11
12libfoo_la_SOURCES = foo.cpp
13libfoo_la_LDFLAGS = -no-undefined
14libfoo_la_LIBADD = $(LIBM)
15
16# Test some of the ILD support when using tagged configurations.
17libbaz_la_SOURCES = baz.cpp
18libbaz_la_LDFLAGS = -no-undefined
19libbaz_la_LIBADD = libfoo.la
20
21noinst_HEADERS = foo.h baz.h
22
23bin_PROGRAMS = tagdemo
24
25tagdemo_SOURCES = main.cpp
26tagdemo_LDADD = libbaz.la
27
28$(OBJECTS): libtool
29libtool: $(LIBTOOL_DEPS)
30	$(SHELL) ./config.status --recheck
31