Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/libntfs
In directory usw-pr-cvs1:/tmp/cvs-serv16510/libntfs
Modified Files:
Makefile.am
Log Message:
Updated documentation and other text files. Preparing for initial release.
Index: Makefile.am
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/libntfs/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** Makefile.am 2001/02/02 00:16:18 1.1
--- Makefile.am 2001/02/02 01:15:17 1.2
***************
*** 1,3 ****
--- 1,12 ----
+ # Before making a release, the LTVERSION string should be modified.
+ # The string is of the form C:R:A.
+ # - 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 = 1:0:0
+
lib_LTLIBRARIES = libntfs.la
***************
*** 11,25 ****
ntfs_rec.c
- # include_HEADERS = \
- # attrib.h \
- # bootsect.h \
- # bitmap.h \
- # mft.h \
- # volume.h \
- # disk_io.h \
- # ntfs_rec.h
-
INCLUDES = -I$(top_srcdir)/include $(all_includes)
! libntfs_la_LDFLAGS = -version-info 1:0:0
--- 20,26 ----
ntfs_rec.c
INCLUDES = -I$(top_srcdir)/include $(all_includes)
+
! libntfs_la_LDFLAGS = -version-info $(LTVERSION)
|