2006-03-07 10:46:36 +00:00
|
|
|
# $Id: Makefile.am,v 1.5 2006/03/07 10:46:36 rocky Exp $
|
2005-11-10 11:11:15 +00:00
|
|
|
#
|
2006-03-06 04:48:37 +00:00
|
|
|
# Copyright (C) 2005, 2006 Rocky Bernstein <rocky@panix.com>
|
2005-11-10 11:11:15 +00:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
#
|
|
|
|
|
########################################################
|
|
|
|
|
# Things to make the libcdio++ library
|
|
|
|
|
########################################################
|
|
|
|
|
#
|
|
|
|
|
# From libtool documentation amended with guidance from N. Boullis:
|
|
|
|
|
#
|
|
|
|
|
# 1. Start with version information of `0:0:0' for each libtool library.
|
|
|
|
|
#
|
|
|
|
|
# 2. It is probably not a good idea to update the version information
|
|
|
|
|
# several times between public releases, but rather once per public
|
|
|
|
|
# release. (This seems to be more an aesthetic consideration than
|
|
|
|
|
# a hard technical one.)
|
|
|
|
|
#
|
|
|
|
|
# 3. If the library source code has changed at all since the last
|
|
|
|
|
# update, then increment REVISION (`C:R:A' becomes `C:R+1:A').
|
|
|
|
|
#
|
|
|
|
|
# 4. If any interfaces have been added, removed, or changed since the
|
|
|
|
|
# last update, increment CURRENT, and set REVISION to 0.
|
|
|
|
|
#
|
|
|
|
|
# 5. If any interfaces have been added since the last public release,
|
|
|
|
|
# then increment AGE.
|
|
|
|
|
#
|
|
|
|
|
# 6. If any interfaces have been removed or changed since the last
|
|
|
|
|
# public release, then set AGE to 0. A changed interface means an
|
|
|
|
|
# incompatibility with previous versions.
|
|
|
|
|
|
2006-03-06 01:34:22 +00:00
|
|
|
lib_LTLIBRARIES = libiso9660++.la libcdio++.la
|
2005-11-10 11:11:15 +00:00
|
|
|
|
|
|
|
|
libcdiopp_la_CURRENT := 0
|
|
|
|
|
libcdiopp_la_REVISION := 0
|
|
|
|
|
libcdiopp_la_AGE := 0
|
|
|
|
|
|
2006-03-07 10:46:36 +00:00
|
|
|
libcdiopp_sources = cdio.cpp devices.cpp
|
2005-11-10 11:11:15 +00:00
|
|
|
|
|
|
|
|
libcdio___la_SOURCES = $(libcdiopp_sources)
|
|
|
|
|
libcdio___la_ldflags = -version-info $(libcdiopp_la_CURRENT):$(libcdiopp_la_REVISION):$(libcdiopp_la_AGE)
|
|
|
|
|
|
2006-03-05 06:52:15 +00:00
|
|
|
libiso9660pp_la_CURRENT := 0
|
|
|
|
|
libiso9660pp_la_REVISION := 0
|
|
|
|
|
libiso9660pp_la_AGE := 0
|
|
|
|
|
|
2006-03-07 10:46:36 +00:00
|
|
|
libiso9660pp_sources = iso9660.cpp
|
2006-03-05 06:52:15 +00:00
|
|
|
|
2006-03-06 01:34:22 +00:00
|
|
|
libiso9660___la_SOURCES = $(libiso9660pp_sources)
|
|
|
|
|
libiso9660___la_ldflags = -version-info $(libiso9660pp_la_CURRENT):$(libiso9660pp_la_REVISION):$(libiso9660pp_la_AGE)
|
2006-03-05 06:52:15 +00:00
|
|
|
|
2005-11-10 11:11:15 +00:00
|
|
|
INCLUDES = -I$(top_srcdir)/include/
|