mirror of
https://github.com/bobranten/Ext4Fsd.git
synced 2025-10-30 05:18:31 -05:00
30 lines
676 B
Plaintext
30 lines
676 B
Plaintext
#
|
|
# Sources for Ext2 file system driver for windows
|
|
# mattwu@163.com - http://www.ext2fsd.com
|
|
#
|
|
|
|
# Name and type of the output file:
|
|
MAJORCOMP=ext2fsd
|
|
MINORCOMP=ext4
|
|
|
|
TARGETNAME=ext4
|
|
TARGETTYPE=LIBRARY
|
|
TARGETPATH=..\$(DDK_TARGET_OS)\$(DDKBUILDENV)\
|
|
|
|
#
|
|
# Visual Studio 6.0 BSC support
|
|
# VS6.0 doesn't support new-type BSC generated by WDK
|
|
#
|
|
!IFDEF BROWSER_INFO_SUPPORTED
|
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__ /FR
|
|
!ELSE
|
|
USER_C_FLAGS = $(USER_C_FLAGS) /D__KERNEL__
|
|
!ENDIF
|
|
DRIVERTYPE=FS
|
|
|
|
INCLUDES=.;..;..\include;$(DRIVER_INC_PATH);
|
|
|
|
# The source code:
|
|
SOURCES= ext4_bh.c ext4_csum.c ext4_extents.c ext4_jbd2.c ext4_xattr.c \
|
|
extents.c
|