Makefile.am for libudf

This commit is contained in:
rocky
2005-10-24 03:14:38 +00:00
parent e9be12e7e5
commit 8d956e8db1

42
lib/udf/Makefile.am Normal file
View File

@@ -0,0 +1,42 @@
########################################################
# Things to make the libudf 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.
libudf_la_CURRENT := 0
libudf_la_REVISION := 0
libudf_la_AGE := 0
EXTRA_DIST = libudf.sym
# noinst_HEADERS = crc.h osta.h
lib_LTLIBRARIES = libudf.la
#libudf_la_SOURCES = crc.c osta.c udf_fs.c
libudf_la_SOURCES = udf_fs.c
libudf_la_LIBADD = @LIBCDIO_LIBS@
INCLUDES = $(LIBCDIO_CFLAGS)