move the runlist functions from attrib.c to runlist.c
2002/06/06 15:43:58-00:00 !antona Add dir template to make files 2002/06/01 00:41:45-00:00 !antona huge update! 2002/04/22 10:34:31-00:00 !antona Attribute list support (merging done, part 2, some stuff still incomplete). mkntfs ntfs volume creation. See the changelog... 2002/04/19 18:23:56-00:00 !antona Add foundation of new inode API. 2002/04/15 20:04:26-00:00 !antona Fix all compiler warnings that came up with -Wall. Enabled -Wall for ./configure --enable-debug everywhere. Fix a few bugs in mkntfs that came up in the warnings (just error code paths, nothing major). 2002/04/14 14:08:29-00:00 !antona Cleanup library code. Throw away unused stuff. 2001/12/06 01:14:52-00:00 !antona Added mount flags to ntfs_mount and adapted utilities to new mount syntax. 2001/07/24 17:41:01-00:00 !antona Minor updates and restructuring the distribution. See NEWS and ChangeLog for details. 2001/06/10 18:30:17-00:00 !antona Preparations for the 0.1.0 release. Updating documentation and information. Updating rpm generation and added mkntfs man page which currently is not accurate as it shows all the mke2fs options in it while mkntfs doesn't actually accept any options except for device at all but it is a good starting point. 2001/06/01 02:07:25-00:00 !antona It has been a long time since last commit. At moment have done a lot of work on mkntfs but also at the moment ntfsfix and ntfsdump_logfile and libntfs are broken. Basically only mkntfs works and that is not complete either. 2001/04/07 00:53:37-00:00 !antona Makefile updates. 2001/03/26 03:46:56-00:00 !antona Makefile fix. 2001/02/03 02:03:36-00:00 !antona More files. 2001/02/02 01:15:17-00:00 !antona Updated documentation and other text files. Preparing for initial release. 2001/02/02 00:16:18-00:00 !antona Changed make process to using autoconf/automake/libtool. Added necessary files for this and for the gnu standard. Inititial checkin. Probably still stuff missing. Will know soon... (Logical change 1.5)edge.strict_endians
parent
3c202b8a4e
commit
bd23a01967
|
@ -0,0 +1,54 @@
|
|||
#
|
||||
# Before making a release, the LTVERSION string should be modified.
|
||||
# The string is of the form CURRENT:REVISION:AGE.
|
||||
#
|
||||
# CURRENT (C)
|
||||
# The most recent interface number that this library implements.
|
||||
#
|
||||
# REVISION (R)
|
||||
# The implementation number that this library implements.
|
||||
#
|
||||
# AGE (A)
|
||||
# The difference between the newest and oldest interfaces that this
|
||||
# library implements. In other works, the library implements all the
|
||||
# interface numbers in the range from number 'CURRENT - AGE' to
|
||||
# 'CURRENT'.
|
||||
#
|
||||
# This means that:
|
||||
#
|
||||
# - If interfaces have been changed or added, but binary compatibility has
|
||||
# been preserved, change to C+1:0:A+1
|
||||
#
|
||||
# - If binary compatibility has been broken (eg removed or changed
|
||||
# interfaces) change to C+1:0:0
|
||||
#
|
||||
# - If the interface is the same as the previous version, change to C:R+1:A
|
||||
#
|
||||
|
||||
LTVERSION = 4:0:0
|
||||
|
||||
# Need this to enable 64-bit (device) file access functions and parameters.
|
||||
if DEBUG
|
||||
AM_CFLAGS = -D_FILE_OFFSET_BITS=64 -g -DDEBUG -Wall
|
||||
else
|
||||
AM_CFLAGS = -D_FILE_OFFSET_BITS=64
|
||||
endif
|
||||
|
||||
linux_ntfsincludedir = -I$(top_srcdir)/include
|
||||
lib_LTLIBRARIES = libntfs.la
|
||||
libntfs_la_LDFLAGS = -version-info $(LTVERSION)
|
||||
libntfs_la_SOURCES = \
|
||||
attrib.c \
|
||||
bootsect.c \
|
||||
debug.c \
|
||||
dir.c \
|
||||
disk_io.c \
|
||||
inode.c \
|
||||
mft.c \
|
||||
mst.c \
|
||||
runlist.c \
|
||||
unistr.c \
|
||||
volume.c
|
||||
|
||||
INCLUDES = $(linux_ntfsincludedir) $(all_includes)
|
||||
|
Loading…
Reference in New Issue