OSDN Git Service

lib-fs-resize: remove unused probe-related code
[android-x86/external-parted.git] / libparted / fs / Makefile.am
1 # This file is part of GNU Parted
2 # Copyright (C) 1999-2001, 2007, 2009-2012 Free Software Foundation, Inc.
3 #
4 # This file may be modified and/or distributed without restriction.
5
6 AUTOMAKE_OPTIONS = subdir-objects
7
8 partedincludedir = -I$(top_builddir)/include -I$(top_srcdir)/include
9
10 AM_CFLAGS = $(WARN_CFLAGS)
11
12 noinst_LTLIBRARIES    = libfs.la
13
14 libfs_la_LIBADD   = $(UUID_LIBS)                \
15                     $(INTLLIBS)                 \
16                     $(OS_LIBS)
17
18 libfs_la_SOURCES =              \
19   amiga/affs.c                  \
20   amiga/affs.h                  \
21   amiga/amiga.c                 \
22   amiga/amiga.h                 \
23   amiga/apfs.c                  \
24   amiga/apfs.h                  \
25   amiga/asfs.c                  \
26   amiga/asfs.h                  \
27   amiga/a-interface.c           \
28   ext2/ext2.h                   \
29   ext2/ext2_fs.h                \
30   ext2/interface.c              \
31   fat/bootsector.c              \
32   fat/bootsector.h              \
33   fat/count.h                   \
34   fat/fat.c                     \
35   fat/fat.h                     \
36   hfs/hfs.c                     \
37   hfs/hfs.h                     \
38   hfs/probe.c                   \
39   hfs/probe.h                   \
40   jfs/jfs.c                     \
41   jfs/jfs_superblock.h          \
42   jfs/jfs_types.h               \
43   linux_swap/linux_swap.c       \
44   nilfs2/nilfs2.c               \
45   ntfs/ntfs.c                   \
46   reiserfs/reiserfs.c           \
47   reiserfs/reiserfs.h           \
48   ufs/ufs.c                     \
49   xfs/platform_defs.h           \
50   xfs/xfs.c                     \
51   xfs/xfs_sb.h                  \
52   xfs/xfs_types.h
53
54 lib_LTLIBRARIES = libparted-fs-resize.la
55
56 EXTRA_DIST =                    \
57   hfs/DOC                       \
58   hfs/HISTORY                   \
59   hfs/TODO
60
61 # Set the shared library version, per Libtool's guidelines.
62 # For details, see the "Updating library version information" section of
63 # "info libtool".
64 CURRENT = 0
65 REVISION = 0
66 AGE = 0
67
68 sym_file = $(srcdir)/fsresize.sym
69 libparted_fs_resize_la_LDFLAGS =                \
70   -Wl,--version-script=$(sym_file)              \
71   -version-info $(CURRENT):$(REVISION):$(AGE)
72 EXTRA_DIST += fsresize.sym
73 libparted_fs_resize_la_DEPENDENCIES = $(sym_file)
74
75 libparted_fs_resize_la_SOURCES = \
76   r/filesys.c                   \
77   r/fat/bootsector.c            \
78   r/fat/bootsector.h            \
79   r/fat/calc.c                  \
80   r/fat/calc.h                  \
81   r/fat/clstdup.c               \
82   r/fat/clstdup.h               \
83   r/fat/context.c               \
84   r/fat/context.h               \
85   r/fat/count.c                 \
86   r/fat/count.h                 \
87   r/fat/fat.c                   \
88   r/fat/fat.h                   \
89   r/fat/fatio.c                 \
90   r/fat/fatio.h                 \
91   r/fat/resize.c                \
92   r/fat/table.c                 \
93   r/fat/table.h                 \
94   r/fat/traverse.c              \
95   r/fat/traverse.h              \
96   r/hfs/advfs.c                 \
97   r/hfs/advfs.h                 \
98   r/hfs/advfs_plus.c            \
99   r/hfs/advfs_plus.h            \
100   r/hfs/cache.c                 \
101   r/hfs/cache.h                 \
102   r/hfs/file.c                  \
103   r/hfs/file.h                  \
104   r/hfs/file_plus.c             \
105   r/hfs/file_plus.h             \
106   r/hfs/hfs.c                   \
107   r/hfs/hfs.h                   \
108   r/hfs/journal.c               \
109   r/hfs/journal.h               \
110   r/hfs/probe.c                 \
111   r/hfs/probe.h                 \
112   r/hfs/reloc.c                 \
113   r/hfs/reloc.h                 \
114   r/hfs/reloc_plus.c            \
115   r/hfs/reloc_plus.h
116
117 INCLUDES = \
118   -I$(top_srcdir)/libparted/labels      \
119   $(partedincludedir)                   \
120   $(INTLINCS)