mirror of
https://github.com/bobranten/Ext4Fsd.git
synced 2025-10-30 05:18:31 -05:00
more line endings conversions
This commit is contained in:
@@ -1,28 +1,28 @@
|
|||||||
#
|
#
|
||||||
# Sources for Ext2 file system driver for windows
|
# Sources for Ext2 file system driver for windows
|
||||||
# mattwu@163.com - http://www.ext2fsd.com
|
# mattwu@163.com - http://www.ext2fsd.com
|
||||||
#
|
#
|
||||||
|
|
||||||
# Name and type of the output file:
|
# Name and type of the output file:
|
||||||
MAJORCOMP=ext2fsd
|
MAJORCOMP=ext2fsd
|
||||||
MINORCOMP=ext3
|
MINORCOMP=ext3
|
||||||
|
|
||||||
TARGETNAME=ext3
|
TARGETNAME=ext3
|
||||||
TARGETTYPE=LIBRARY
|
TARGETTYPE=LIBRARY
|
||||||
TARGETPATH=..\$(DDK_TARGET_OS)\$(DDKBUILDENV)\
|
TARGETPATH=..\$(DDK_TARGET_OS)\$(DDKBUILDENV)\
|
||||||
|
|
||||||
#
|
#
|
||||||
# Visual Studio 6.0 BSC support
|
# Visual Studio 6.0 BSC support
|
||||||
# VS6.0 doesn't support new-type BSC generated by WDK
|
# VS6.0 doesn't support new-type BSC generated by WDK
|
||||||
#
|
#
|
||||||
!IFDEF BROWSER_INFO_SUPPORTED
|
!IFDEF BROWSER_INFO_SUPPORTED
|
||||||
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__ /FR
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__ /FR
|
||||||
!ELSE
|
!ELSE
|
||||||
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__
|
||||||
!ENDIF
|
!ENDIF
|
||||||
DRIVERTYPE=FS
|
DRIVERTYPE=FS
|
||||||
|
|
||||||
INCLUDES=.;..;..\include;$(DRIVER_INC_PATH);
|
INCLUDES=.;..;..\include;$(DRIVER_INC_PATH);
|
||||||
|
|
||||||
# The source code:
|
# The source code:
|
||||||
SOURCES= generic.c htree.c recover.c indirect.c
|
SOURCES= generic.c htree.c recover.c indirect.c
|
||||||
@@ -1,29 +1,29 @@
|
|||||||
#
|
#
|
||||||
# Sources for Ext2 file system driver for windows
|
# Sources for Ext2 file system driver for windows
|
||||||
# mattwu@163.com - http://www.ext2fsd.com
|
# mattwu@163.com - http://www.ext2fsd.com
|
||||||
#
|
#
|
||||||
|
|
||||||
# Name and type of the output file:
|
# Name and type of the output file:
|
||||||
MAJORCOMP=ext2fsd
|
MAJORCOMP=ext2fsd
|
||||||
MINORCOMP=ext4
|
MINORCOMP=ext4
|
||||||
|
|
||||||
TARGETNAME=ext4
|
TARGETNAME=ext4
|
||||||
TARGETTYPE=LIBRARY
|
TARGETTYPE=LIBRARY
|
||||||
TARGETPATH=..\$(DDK_TARGET_OS)\$(DDKBUILDENV)\
|
TARGETPATH=..\$(DDK_TARGET_OS)\$(DDKBUILDENV)\
|
||||||
|
|
||||||
#
|
#
|
||||||
# Visual Studio 6.0 BSC support
|
# Visual Studio 6.0 BSC support
|
||||||
# VS6.0 doesn't support new-type BSC generated by WDK
|
# VS6.0 doesn't support new-type BSC generated by WDK
|
||||||
#
|
#
|
||||||
!IFDEF BROWSER_INFO_SUPPORTED
|
!IFDEF BROWSER_INFO_SUPPORTED
|
||||||
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__ /FR
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__ /FR
|
||||||
!ELSE
|
!ELSE
|
||||||
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__
|
||||||
!ENDIF
|
!ENDIF
|
||||||
DRIVERTYPE=FS
|
DRIVERTYPE=FS
|
||||||
|
|
||||||
INCLUDES=.;..;..\include;$(DRIVER_INC_PATH);
|
INCLUDES=.;..;..\include;$(DRIVER_INC_PATH);
|
||||||
|
|
||||||
# The source code:
|
# The source code:
|
||||||
SOURCES= ext4_bh.c ext4_csum.c ext4_extents.c ext4_jbd2.c ext4_xattr.c \
|
SOURCES= ext4_bh.c ext4_csum.c ext4_extents.c ext4_jbd2.c ext4_xattr.c \
|
||||||
extents.c
|
extents.c
|
||||||
|
|||||||
@@ -1,29 +1,29 @@
|
|||||||
#
|
#
|
||||||
# Sources for Ext2 file system driver for windows
|
# Sources for Ext2 file system driver for windows
|
||||||
# mattwu@163.com - http://ext2fsd.sf.net
|
# mattwu@163.com - http://ext2fsd.sf.net
|
||||||
#
|
#
|
||||||
|
|
||||||
# Name and type of the output file:
|
# Name and type of the output file:
|
||||||
MAJORCOMP=ext2fsd
|
MAJORCOMP=ext2fsd
|
||||||
MINORCOMP=jbd
|
MINORCOMP=jbd
|
||||||
|
|
||||||
TARGETNAME=jbd
|
TARGETNAME=jbd
|
||||||
TARGETTYPE=LIBRARY
|
TARGETTYPE=LIBRARY
|
||||||
TARGETPATH=..\$(DDK_TARGET_OS)\$(DDKBUILDENV)\
|
TARGETPATH=..\$(DDK_TARGET_OS)\$(DDKBUILDENV)\
|
||||||
|
|
||||||
#
|
#
|
||||||
# Visual Studio 6.0 BSC support
|
# Visual Studio 6.0 BSC support
|
||||||
# VS6.0 doesn't support new-type BSC generated by WDK
|
# VS6.0 doesn't support new-type BSC generated by WDK
|
||||||
#
|
#
|
||||||
!IFDEF BROWSER_INFO_SUPPORTED
|
!IFDEF BROWSER_INFO_SUPPORTED
|
||||||
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__ /FR
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__ /FR
|
||||||
!ELSE
|
!ELSE
|
||||||
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__
|
||||||
!ENDIF
|
!ENDIF
|
||||||
|
|
||||||
DRIVERTYPE=FS
|
DRIVERTYPE=FS
|
||||||
|
|
||||||
INCLUDES=..\include;.;$(DRIVER_INC_PATH);
|
INCLUDES=..\include;.;$(DRIVER_INC_PATH);
|
||||||
|
|
||||||
# The source code:
|
# The source code:
|
||||||
SOURCES=recovery.c replay.c revoke.c
|
SOURCES=recovery.c replay.c revoke.c
|
||||||
@@ -1,48 +1,48 @@
|
|||||||
#
|
#
|
||||||
# Sources for Ext2 file system driver for windows
|
# Sources for Ext2 file system driver for windows
|
||||||
# mattwu@163.com - http://ext2fsd.sf.net
|
# mattwu@163.com - http://ext2fsd.sf.net
|
||||||
#
|
#
|
||||||
|
|
||||||
# Name and type of the output file:
|
# Name and type of the output file:
|
||||||
MAJORCOMP=ext2fsd
|
MAJORCOMP=ext2fsd
|
||||||
MINORCOMP=nlssup
|
MINORCOMP=nlssup
|
||||||
|
|
||||||
TARGETNAME=nlssup
|
TARGETNAME=nlssup
|
||||||
TARGETTYPE=LIBRARY
|
TARGETTYPE=LIBRARY
|
||||||
TARGETPATH=..\$(DDK_TARGET_OS)\$(DDKBUILDENV)\
|
TARGETPATH=..\$(DDK_TARGET_OS)\$(DDKBUILDENV)\
|
||||||
|
|
||||||
# Visual Studio 6.0 BSC support
|
# Visual Studio 6.0 BSC support
|
||||||
# VS6.0 doesn't support new-type BSC generated by WDK
|
# VS6.0 doesn't support new-type BSC generated by WDK
|
||||||
#
|
#
|
||||||
!IFDEF BROWSER_INFO_SUPPORTED
|
!IFDEF BROWSER_INFO_SUPPORTED
|
||||||
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__ /FR
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__ /FR
|
||||||
!ELSE
|
!ELSE
|
||||||
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__
|
||||||
!ENDIF
|
!ENDIF
|
||||||
|
|
||||||
DRIVERTYPE=FS
|
DRIVERTYPE=FS
|
||||||
|
|
||||||
INCLUDES=..\include;.;$(DRIVER_INC_PATH);
|
INCLUDES=..\include;.;$(DRIVER_INC_PATH);
|
||||||
|
|
||||||
# The source code:
|
# The source code:
|
||||||
SOURCES=nls_base.c nls_cp1250.c \
|
SOURCES=nls_base.c nls_cp1250.c \
|
||||||
nls_cp1251.c nls_cp1255.c \
|
nls_cp1251.c nls_cp1255.c \
|
||||||
nls_cp437.c nls_cp737.c \
|
nls_cp437.c nls_cp737.c \
|
||||||
nls_cp775.c nls_cp850.c \
|
nls_cp775.c nls_cp850.c \
|
||||||
nls_cp852.c nls_cp855.c \
|
nls_cp852.c nls_cp855.c \
|
||||||
nls_cp857.c nls_cp860.c \
|
nls_cp857.c nls_cp860.c \
|
||||||
nls_cp861.c nls_cp862.c \
|
nls_cp861.c nls_cp862.c \
|
||||||
nls_cp863.c nls_cp864.c \
|
nls_cp863.c nls_cp864.c \
|
||||||
nls_cp865.c nls_cp866.c \
|
nls_cp865.c nls_cp866.c \
|
||||||
nls_cp869.c nls_cp874.c \
|
nls_cp869.c nls_cp874.c \
|
||||||
nls_cp932.c nls_cp936.c \
|
nls_cp932.c nls_cp936.c \
|
||||||
nls_cp949.c nls_cp950.c \
|
nls_cp949.c nls_cp950.c \
|
||||||
nls_euc-jp.c nls_koi8-r.c \
|
nls_euc-jp.c nls_koi8-r.c \
|
||||||
nls_ascii.c nls_iso8859-1.c \
|
nls_ascii.c nls_iso8859-1.c \
|
||||||
nls_iso8859-13.c nls_iso8859-14.c \
|
nls_iso8859-13.c nls_iso8859-14.c \
|
||||||
nls_iso8859-15.c nls_iso8859-2.c \
|
nls_iso8859-15.c nls_iso8859-2.c \
|
||||||
nls_iso8859-3.c nls_iso8859-4.c \
|
nls_iso8859-3.c nls_iso8859-4.c \
|
||||||
nls_iso8859-5.c nls_iso8859-6.c \
|
nls_iso8859-5.c nls_iso8859-6.c \
|
||||||
nls_iso8859-7.c nls_iso8859-9.c \
|
nls_iso8859-7.c nls_iso8859-9.c \
|
||||||
nls_koi8-ru.c nls_koi8-u.c \
|
nls_koi8-ru.c nls_koi8-u.c \
|
||||||
nls_utf8.c
|
nls_utf8.c
|
||||||
@@ -1,63 +1,63 @@
|
|||||||
#
|
#
|
||||||
# Sources for Ext2 file system driver for windows
|
# Sources for Ext2 file system driver for windows
|
||||||
# mattwu@163.com - http://ext2fsd.sf.net
|
# mattwu@163.com - http://ext2fsd.sf.net
|
||||||
#
|
#
|
||||||
|
|
||||||
# Name and type of the output file:
|
# Name and type of the output file:
|
||||||
TARGETNAME=ext2fsd
|
TARGETNAME=ext2fsd
|
||||||
TARGETTYPE=DRIVER
|
TARGETTYPE=DRIVER
|
||||||
TARGETPATH=..\$(DDK_TARGET_OS)\$(DDKBUILDENV)
|
TARGETPATH=..\$(DDK_TARGET_OS)\$(DDKBUILDENV)
|
||||||
|
|
||||||
DRIVERTYPE=FS
|
DRIVERTYPE=FS
|
||||||
|
|
||||||
#
|
#
|
||||||
# Visual Studio 6.0 BSC support
|
# Visual Studio 6.0 BSC support
|
||||||
# VS6.0 doesn't support new-type BSC generated by WDK
|
# VS6.0 doesn't support new-type BSC generated by WDK
|
||||||
#
|
#
|
||||||
!IFDEF BROWSER_INFO_SUPPORTED
|
!IFDEF BROWSER_INFO_SUPPORTED
|
||||||
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__ /FR
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__ /FR
|
||||||
!ELSE
|
!ELSE
|
||||||
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__
|
||||||
!ENDIF
|
!ENDIF
|
||||||
|
|
||||||
INCLUDES=..\include;
|
INCLUDES=..\include;
|
||||||
TARGETLIBS= $(TARGETPATH)\*\nlssup.lib \
|
TARGETLIBS= $(TARGETPATH)\*\nlssup.lib \
|
||||||
$(TARGETPATH)\*\jbd2.lib \
|
$(TARGETPATH)\*\jbd2.lib \
|
||||||
$(TARGETPATH)\*\ext3.lib \
|
$(TARGETPATH)\*\ext3.lib \
|
||||||
$(TARGETPATH)\*\ext4.lib
|
$(TARGETPATH)\*\ext4.lib
|
||||||
|
|
||||||
!IF "$(DDK_TARGET_OS)"=="Win2K"
|
!IF "$(DDK_TARGET_OS)"=="Win2K"
|
||||||
TARGETLIBS= $(TARGETLIBS) \
|
TARGETLIBS= $(TARGETLIBS) \
|
||||||
$(DDK_LIB_PATH)\int64.lib
|
$(DDK_LIB_PATH)\int64.lib
|
||||||
!ENDIF
|
!ENDIF
|
||||||
|
|
||||||
# The source code:
|
# The source code:
|
||||||
SOURCES= ..\Ext4Fsd.rc \
|
SOURCES= ..\Ext4Fsd.rc \
|
||||||
..\access.c \
|
..\access.c \
|
||||||
..\fastio.c \
|
..\fastio.c \
|
||||||
..\memory.c \
|
..\memory.c \
|
||||||
..\close.c \
|
..\close.c \
|
||||||
..\dirctl.c \
|
..\dirctl.c \
|
||||||
..\except.c \
|
..\except.c \
|
||||||
..\read.c \
|
..\read.c \
|
||||||
..\misc.c \
|
..\misc.c \
|
||||||
..\devctl.c \
|
..\devctl.c \
|
||||||
..\volinfo.c \
|
..\volinfo.c \
|
||||||
..\lock.c \
|
..\lock.c \
|
||||||
..\cleanup.c \
|
..\cleanup.c \
|
||||||
..\block.c \
|
..\block.c \
|
||||||
..\cmcb.c \
|
..\cmcb.c \
|
||||||
..\fileinfo.c \
|
..\fileinfo.c \
|
||||||
..\dispatch.c \
|
..\dispatch.c \
|
||||||
..\init.c \
|
..\init.c \
|
||||||
..\debug.c \
|
..\debug.c \
|
||||||
..\create.c \
|
..\create.c \
|
||||||
..\fsctl.c \
|
..\fsctl.c \
|
||||||
..\pnp.c \
|
..\pnp.c \
|
||||||
..\rbtree.c \
|
..\rbtree.c \
|
||||||
..\write.c \
|
..\write.c \
|
||||||
..\flush.c \
|
..\flush.c \
|
||||||
..\shutdown.c \
|
..\shutdown.c \
|
||||||
..\nls.c \
|
..\nls.c \
|
||||||
..\linux.c \
|
..\linux.c \
|
||||||
..\ea.c
|
..\ea.c
|
||||||
|
|||||||
Reference in New Issue
Block a user