mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
22 lines
754 B
Makefile
22 lines
754 B
Makefile
## @file
|
|
# Copyright (c) 2022, Mikhail Krichanov. All rights reserved.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
##
|
|
|
|
# CC=clang DEBUG=1 FUZZ=1 SANITIZE=1 make -j4 fuzz
|
|
PROJECT = TestExt4Dxe
|
|
PRODUCT = $(PROJECT)$(INFIX)$(SUFFIX)
|
|
OBJS = $(PROJECT).o
|
|
OBJS += BaseUcs2Utf8Lib.o BaseOrderedCollectionRedBlackTreeLib.o
|
|
OBJS += BlockGroup.o BlockMap.o Collation.o Directory.o DiskUtil.o
|
|
OBJS += Ext4Dxe.o Extents.o File.o Inode.o Partition.o Superblock.o
|
|
|
|
include ../../User/Makefile
|
|
|
|
CFLAGS += -I$(UDK_PATH)/RedfishPkg/Include
|
|
CFLAGS += -I$(UDK_PATH)/Ext4Pkg/Ext4Dxe
|
|
|
|
VPATH += $(UDK_PATH)/RedfishPkg/Library/BaseUcs2Utf8Lib:$\
|
|
$(UDK_PATH)/MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib:$\
|
|
$(UDK_PATH)/Ext4Pkg/Ext4Dxe:$
|