Blame lib/udf/Makefile.am

Packit dd8086
#   Copyright (C) 2003, 2004, 2006, 2008, 2011, 2013, 2017
Packit dd8086
#    Rocky Bernstein <rocky@gnu.org>
Packit dd8086
#
Packit dd8086
#   This program is free software: you can redistribute it and/or modify
Packit dd8086
#   it under the terms of the GNU General Public License as published by
Packit dd8086
#   the Free Software Foundation, either version 3 of the License, or
Packit dd8086
#   (at your option) any later version.
Packit dd8086
#
Packit dd8086
#   This program is distributed in the hope that it will be useful,
Packit dd8086
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit dd8086
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit dd8086
#   GNU General Public License for more details.
Packit dd8086
#
Packit dd8086
#   You should have received a copy of the GNU General Public License
Packit dd8086
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit dd8086
Packit dd8086
########################################################
Packit dd8086
# Things to make the libudf library
Packit dd8086
########################################################
Packit dd8086
#
Packit dd8086
# From libtool documentation amended with guidance from N. Boullis:
Packit dd8086
#
Packit dd8086
#  1. Start with version information of `0:0:0' for each libtool library.
Packit dd8086
#
Packit dd8086
#  2. It is probably not a good idea to update the version information
Packit dd8086
#     several times between public releases, but rather once per public
Packit dd8086
#     release. (This seems to be more an aesthetic consideration than
Packit dd8086
#     a hard technical one.)
Packit dd8086
#
Packit dd8086
#  3. If the library source code has changed at all since the last
Packit dd8086
#     update, then increment REVISION (`C:R:A' becomes `C:R+1:A').
Packit dd8086
#
Packit dd8086
#  4. If any interfaces have been added, removed, or changed since the
Packit dd8086
#     last update, increment CURRENT, and set REVISION to 0.
Packit dd8086
#
Packit dd8086
#  5. If any interfaces have been added since the last public release,
Packit dd8086
#     then increment AGE.
Packit dd8086
#
Packit dd8086
#  6. If any interfaces have been removed or changed since the last
Packit dd8086
#     public release, then set AGE to 0. A changed interface means an
Packit dd8086
#     incompatibility with previous versions.
Packit dd8086
Packit dd8086
libudf_la_CURRENT = 4
Packit dd8086
libudf_la_REVISION = 0
Packit dd8086
libudf_la_AGE = 0
Packit dd8086
Packit dd8086
EXTRA_DIST = libudf.sym
Packit dd8086
Packit dd8086
noinst_HEADERS = udf_fs.h udf_private.h
Packit dd8086
Packit dd8086
lib_LTLIBRARIES = libudf.la
Packit dd8086
Packit dd8086
libudf_la_SOURCES = udf.c udf_file.c udf_fs.c udf_time.c filemode.c
Packit dd8086
Packit dd8086
libudf_la_LIBADD = @LIBCDIO_LIBS@ @LT_NO_UNDEFINED@
Packit dd8086
Packit dd8086
AM_CPPFLAGS = $(LIBCDIO_CFLAGS)