mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
40 lines
780 B
Makefile
40 lines
780 B
Makefile
## @file
|
|
# Copyright (c) 2020, PMheart. All rights reserved.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
##
|
|
|
|
PROJECT = KextInject
|
|
PRODUCT = $(PROJECT)$(INFIX)$(SUFFIX)
|
|
OBJS = $(PROJECT).o \
|
|
CommonPatches.o \
|
|
CpuidPatches.o \
|
|
KextPatcher.o \
|
|
KxldState.o \
|
|
PrelinkedKext.o \
|
|
PrelinkedContext.o \
|
|
MkextContext.o \
|
|
Vtables.o \
|
|
Link.o \
|
|
KernelReader.o \
|
|
KernelCollection.o \
|
|
lzss.o \
|
|
lzvn.o \
|
|
adler32.o \
|
|
compress.o \
|
|
crc32.o \
|
|
deflate.o \
|
|
infback.o \
|
|
inffast.o \
|
|
inflate.o \
|
|
inftrees.o \
|
|
trees.o \
|
|
uncompr.o \
|
|
zlib_uefi.o \
|
|
zutil.o
|
|
VPATH = ../../Library/OcAppleKernelLib:$\
|
|
../../Library/OcCompressionLib/lzss:$\
|
|
../../Library/OcCompressionLib/lzvn:$\
|
|
../../Library/OcCompressionLib/zlib
|
|
include ../../User/Makefile
|
|
include ../../User/SilenceZlibWarnings
|