Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/libntfs
In directory usw-pr-cvs1:/tmp/cvs-serv12389/libntfs
Modified Files:
Makefile.am Makefile.in
Log Message:
Add dir template to make files
Index: Makefile.am
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/libntfs/Makefile.am,v
retrieving revision 1.14
retrieving revision 1.15
diff -U2 -r1.14 -r1.15
--- Makefile.am 1 Jun 2002 00:41:45 -0000 1.14
+++ Makefile.am 6 Jun 2002 15:43:58 -0000 1.15
@@ -42,4 +42,5 @@
bootsect.c \
debug.c \
+ dir.c \
disk_io.c \
inode.c \
Index: Makefile.in
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/libntfs/Makefile.in,v
retrieving revision 1.20
retrieving revision 1.21
diff -U2 -r1.20 -r1.21
--- Makefile.in 1 Jun 2002 00:41:45 -0000 1.20
+++ Makefile.in 6 Jun 2002 15:43:59 -0000 1.21
@@ -126,4 +126,5 @@
bootsect.c \
debug.c \
+ dir.c \
disk_io.c \
inode.c \
@@ -144,6 +145,6 @@
LIBS = @LIBS@
libntfs_la_LIBADD =
-libntfs_la_OBJECTS = attrib.lo bootsect.lo debug.lo disk_io.lo inode.lo \
-mft.lo mst.lo unistr.lo volume.lo
+libntfs_la_OBJECTS = attrib.lo bootsect.lo debug.lo dir.lo disk_io.lo \
+inode.lo mft.lo mst.lo unistr.lo volume.lo
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -157,5 +158,5 @@
TAR = gtar
GZIP_ENV = --best
-DEP_FILES = .deps/attrib.P .deps/bootsect.P .deps/debug.P \
+DEP_FILES = .deps/attrib.P .deps/bootsect.P .deps/debug.P .deps/dir.P \
.deps/disk_io.P .deps/inode.P .deps/mft.P .deps/mst.P .deps/unistr.P \
.deps/volume.P
|