-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMAKEFILE
More file actions
45 lines (38 loc) · 1.15 KB
/
MAKEFILE
File metadata and controls
45 lines (38 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
.SUFFIXES: .c .o
OBJDIR= /usr/obj/
KMOD= hfs
SRCS= hfsplus/hfs_vfsops.c \
hfsplus/hfs_vnops.c \
hfsplus/hfs_cnode.c \
hfsplus/hfs_chash.c \
hfsplus/hfs_catalog.c \
hfsplus/hfs_encodings.c \
hfsplus/hfs_vfsutils.c \
hfsplus/hfs_endian.c \
hfsplus/hfs_encodinghint.c \
hfsplus/hfs_quota.c \
hfsplus/hfs_lookup.c \
hfsplus/hfs_attr.c \
hfsplus/rangelist.c \
hfsplus/hfscommon/Misc/FileExtentMapping.c \
hfsplus/hfscommon/Misc/VolumeAllocation.c \
hfsplus/hfscommon/Misc/BTreeWrapper.c \
hfsplus/hfscommon/Catalog/CatalogUtilities.c \
hfsplus/hfs_btreeio.c \
hfsplus/hfscommon/Catalog/Catalog.c \
hfsplus/hfscommon/Catalog/CatalogIterators.c \
hfsplus/hfs_readwrite.c \
hfsplus/hfs_macos_stubs.c \
vfs/vfs_utfconv.c \
hfsplus/hfscommon/BTree/BTree.c \
hfsplus/hfscommon/BTree/BTreeTreeOps.c \
hfsplus/hfscommon/BTree/BTreeMiscOps.c \
hfsplus/hfscommon/BTree/BTreeNodeOps.c \
hfsplus/hfscommon/BTree/BTreeAllocate.c \
hfsplus/hfscommon/Unicode/UnicodeWrappers.c \
hfsplus/hfs_attrlist.c \
SRCS+= vnode_if.h
SYSDIR?= /usr/src/sys
KERNBUILDDIR= /usr/obj/usr/src/arm64.aarch64/sys/GENERIC
CFLAGS+= -I${.CURDIR} -DKERNEL -g
.include <bsd.kmod.mk>