mirror of
https://github.com/bobranten/Ext4Fsd.git
synced 2025-10-30 13:28:31 -05:00
29 lines
603 B
Plaintext
29 lines
603 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=ext3
|
|
|
|
TARGETNAME=ext3
|
|
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= generic.c htree.c recover.c indirect.c
|