blob: 41a60d9818529a1272a2e10f38ce7d1f508f3f56 (
plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# This file is part of GNU Parted
# Copyright (C) 1999-2001, 2007, 2009-2014, 2019-2023 Free Software Foundation,
# Inc.
#
# This file may be modified and/or distributed without restriction.
partedincludedir = -I$(top_builddir)/include -I$(top_srcdir)/include -I$(top_srcdir)/lib
AM_CFLAGS = $(WARN_CFLAGS)
noinst_LTLIBRARIES = libfs.la
libfs_la_LIBADD = $(UUID_LIBS) \
$(INTLLIBS) \
$(OS_LIBS)
libfs_la_SOURCES = \
amiga/affs.c \
amiga/affs.h \
amiga/amiga.c \
amiga/amiga.h \
amiga/apfs.c \
amiga/apfs.h \
amiga/asfs.c \
amiga/asfs.h \
amiga/a-interface.c \
btrfs/btrfs.c \
ext2/ext2.h \
ext2/ext2_fs.h \
ext2/interface.c \
fat/bootsector.c \
fat/bootsector.h \
fat/count.h \
fat/fat.c \
fat/fat.h \
f2fs/f2fs.c \
f2fs/f2fs.h \
hfs/hfs.c \
hfs/hfs.h \
hfs/probe.c \
hfs/probe.h \
jfs/jfs.c \
jfs/jfs_superblock.h \
jfs/jfs_types.h \
linux_swap/linux_swap.c \
nilfs2/nilfs2.c \
ntfs/ntfs.c \
reiserfs/reiserfs.c \
reiserfs/reiserfs.h \
udf/udf.c \
ufs/ufs.c \
xfs/platform_defs.h \
xfs/xfs.c \
xfs/xfs_sb.h \
xfs/xfs_types.h
lib_LTLIBRARIES = libparted-fs-resize.la
EXTRA_DIST = \
hfs/DOC \
hfs/HISTORY \
hfs/TODO
# Set the shared library version, per Libtool's guidelines.
# For details, see the "Updating library version information" section of
# "info libtool".
CURRENT = 0
REVISION = 5
AGE = 0
sym_file = $(srcdir)/fsresize.sym
libparted_fs_resize_la_LDFLAGS = \
-Wl,--version-script=$(sym_file) \
-version-info $(CURRENT):$(REVISION):$(AGE)
EXTRA_DIST += fsresize.sym
libparted_fs_resize_la_DEPENDENCIES = $(sym_file)
libparted_fs_resize_la_SOURCES = \
r/filesys.c \
r/fat/bootsector.c \
r/fat/bootsector.h \
r/fat/calc.c \
r/fat/calc.h \
r/fat/clstdup.c \
r/fat/clstdup.h \
r/fat/context.c \
r/fat/context.h \
r/fat/count.c \
r/fat/count.h \
r/fat/fat.c \
r/fat/fat.h \
r/fat/fatio.c \
r/fat/fatio.h \
r/fat/resize.c \
r/fat/table.c \
r/fat/table.h \
r/fat/traverse.c \
r/fat/traverse.h \
r/hfs/advfs.c \
r/hfs/advfs.h \
r/hfs/advfs_plus.c \
r/hfs/advfs_plus.h \
r/hfs/cache.c \
r/hfs/cache.h \
r/hfs/file.c \
r/hfs/file.h \
r/hfs/file_plus.c \
r/hfs/file_plus.h \
r/hfs/hfs.c \
r/hfs/hfs.h \
r/hfs/journal.c \
r/hfs/journal.h \
r/hfs/probe.c \
r/hfs/probe.h \
r/hfs/reloc.c \
r/hfs/reloc.h \
r/hfs/reloc_plus.c \
r/hfs/reloc_plus.h
AM_CPPFLAGS = \
-I$(top_srcdir)/libparted/labels \
$(partedincludedir) \
$(INTLINCS)
|