Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/libntfs
In directory usw-pr-cvs1:/tmp/cvs-serv6403/libntfs
Modified Files:
Makefile.am Makefile.in
Log Message:
More files.
Index: Makefile.am
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/libntfs/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Makefile.am 2001/02/02 01:15:17 1.2
--- Makefile.am 2001/02/03 02:03:36 1.3
***************
*** 9,14 ****
LTVERSION = 1:0:0
lib_LTLIBRARIES = libntfs.la
!
libntfs_la_SOURCES = \
attrib.c \
--- 9,15 ----
LTVERSION = 1:0:0
+ linux_ntfsincludedir = -I$(top_srcdir)/include
lib_LTLIBRARIES = libntfs.la
! libntfs_la_LDFLAGS = -version-info $(LTVERSION)
libntfs_la_SOURCES = \
attrib.c \
***************
*** 19,26 ****
disk_io.c \
ntfs_rec.c
-
- INCLUDES = -I$(top_srcdir)/include $(all_includes)
!
! libntfs_la_LDFLAGS = -version-info $(LTVERSION)
--- 20,24 ----
disk_io.c \
ntfs_rec.c
! INCLUDES = $(linux_ntfsincludedir) $(all_includes)
Index: Makefile.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/libntfs/Makefile.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** Makefile.in 2001/02/02 00:16:18 1.1
--- Makefile.in 2001/02/03 02:03:36 1.2
***************
*** 11,15 ****
--- 11,23 ----
# PARTICULAR PURPOSE.
+ # 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
+
SHELL = @SHELL@
***************
*** 83,103 ****
all_libraries = @all_libraries@
! lib_LTLIBRARIES = libntfs.la
libntfs_la_SOURCES = attrib.c bootsect.c bitmap.c mft.c volume.c disk_io.c 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
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = ../config.h
--- 91,103 ----
all_libraries = @all_libraries@
! LTVERSION = 1:0:0
+ linux_ntfsincludedir = -I$(top_srcdir)/include
+ lib_LTLIBRARIES = libntfs.la
+ libntfs_la_LDFLAGS = -version-info $(LTVERSION)
libntfs_la_SOURCES = attrib.c bootsect.c bitmap.c mft.c volume.c disk_io.c ntfs_rec.c
! INCLUDES = $(linux_ntfsincludedir) $(all_includes)
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = ../config.h
|