mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-24 18:43:53 +08:00
118d7dacc5
LABEL=xxx or UUID=xxx. Add new utility program /sbin/findfs, which interprets LABEL=xxx or UUID=xxx, and returns the device name. (Part of tune2fs).
265 lines
9.7 KiB
Makefile
265 lines
9.7 KiB
Makefile
#
|
|
# Standard e2fsprogs prologue....
|
|
#
|
|
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
VPATH = @srcdir@
|
|
top_builddir = ..
|
|
my_dir = misc
|
|
INSTALL = @INSTALL@
|
|
|
|
@MCONFIG@
|
|
|
|
@IMAGER_CMT@E2IMAGE_PROG= e2image
|
|
@IMAGER_CMT@E2IMAGE_MAN= e2image.8
|
|
|
|
SPROGS= mke2fs badblocks tune2fs dumpe2fs $(E2IMAGE_PROG) @FSCK_PROG@
|
|
USPROGS= mklost+found
|
|
SMANPAGES= tune2fs.8 mklost+found.8 mke2fs.8 dumpe2fs.8 badblocks.8 \
|
|
e2label.8 findfs.8 $(E2IMAGE_MAN) @FSCK_MAN@
|
|
|
|
UPROGS= chattr lsattr uuidgen
|
|
UMANPAGES= chattr.1 lsattr.1 uuidgen.1
|
|
|
|
TUNE2FS_OBJS= tune2fs.o util.o get_device_by_label.o
|
|
MKLPF_OBJS= mklost+found.o
|
|
MKE2FS_OBJS= mke2fs.o util.o get_device_by_label.o
|
|
CHATTR_OBJS= chattr.o
|
|
LSATTR_OBJS= lsattr.o
|
|
UUIDGEN_OBJS= uuidgen.o
|
|
DUMPE2FS_OBJS= dumpe2fs.o
|
|
BADBLOCKS_OBJS= badblocks.o
|
|
E2IMAGE_OBJS= e2image.o
|
|
FSCK_OBJS= fsck.o get_device_by_label.o base_device.o fstype.o
|
|
|
|
SRCS= $(srcdir)/tune2fs.c $(srcdir)/mklost+found.c $(srcdir)/mke2fs.c \
|
|
$(srcdir)/chattr.c $(srcdir)/lsattr.c $(srcdir)/dumpe2fs.c \
|
|
$(srcdir)/badblocks.c $(srcdir)/fsck.c $(srcdir)/util.c \
|
|
$(srcdir)/uuidgen.c $(srcdir)/fstype.c
|
|
|
|
LIBS= $(LIBEXT2FS) $(LIBCOM_ERR)
|
|
DEPLIBS= $(LIBEXT2FS) $(LIBCOM_ERR)
|
|
|
|
STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR)
|
|
STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR)
|
|
|
|
LIBS_E2P= $(LIBEXT2FS) $(LIBE2P) $(LIBCOM_ERR)
|
|
DEPLIBS_E2P= $(LIBEXT2FS) $(LIBE2P) $(LIBCOM_ERR)
|
|
|
|
.c.o:
|
|
$(CC) -c $(ALL_CFLAGS) $< -o $@
|
|
|
|
all:: $(SPROGS) $(UPROGS) $(USPROGS) $(SMANPAGES) $(UMANPAGES)
|
|
|
|
findsuper: findsuper.o
|
|
$(CC) $(ALL_LDFLAGS) -o findsuper findsuper.o
|
|
|
|
tune2fs: $(TUNE2FS_OBJS) $(DEPLIBS_E2P) $(DEPLIBUUID)
|
|
$(CC) $(ALL_LDFLAGS) -o tune2fs $(TUNE2FS_OBJS) $(LIBS_E2P) $(LIBUUID)
|
|
|
|
e2image: $(E2IMAGE_OBJS) $(DEPLIBS)
|
|
$(CC) $(ALL_LDFLAGS) -o e2image $(E2IMAGE_OBJS) $(LIBS)
|
|
|
|
base_device: base_device.c
|
|
$(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(srcdir)/base_device.c \
|
|
-DDEBUG -o base_device
|
|
|
|
fstype: fstype.c
|
|
$(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) -DTEST_PROGRAM $(srcdir)/fstype.c \
|
|
get_device_by_label.o $(LIBUUID) $(LIBS) -o fstype
|
|
|
|
check:: base_device
|
|
./base_device < $(srcdir)/base_device.tst > base_device.out
|
|
cmp $(srcdir)/base_device.tst base_device.out
|
|
|
|
mklost+found: $(MKLPF_OBJS)
|
|
$(CC) $(ALL_LDFLAGS) -o mklost+found $(MKLPF_OBJS)
|
|
|
|
mke2fs: $(MKE2FS_OBJS) $(DEPLIBS) $(LIBE2P) $(DEPLIBUUID)
|
|
$(CC) $(ALL_LDFLAGS) -o mke2fs $(MKE2FS_OBJS) $(LIBS) $(LIBE2P) $(LIBUUID)
|
|
|
|
mke2fs.static: $(MKE2FS_OBJS) $(STATIC_DEPLIBS) $(STATIC_LIBE2P) $(DEPSTATIC_LIBUUID)
|
|
$(CC) $(ALL_LDFLAGS) -static -o mke2fs.static $(MKE2FS_OBJS) \
|
|
$(STATIC_LIBS) $(STATIC_LIBE2P) $(STATIC_LIBUUID)
|
|
|
|
resize2fs: resize2fs.o $(DEPLIBS)
|
|
$(CC) $(ALL_LDFLAGS) -o resize2fs resize2fs.o $(LIBS)
|
|
|
|
chattr: $(CHATTR_OBJS) $(DEPLIBS_E2P)
|
|
$(CC) $(ALL_LDFLAGS) -o chattr $(CHATTR_OBJS) $(LIBS_E2P)
|
|
|
|
lsattr: $(LSATTR_OBJS) $(DEPLIBS_E2P)
|
|
$(CC) $(ALL_LDFLAGS) -o lsattr $(LSATTR_OBJS) $(LIBS_E2P)
|
|
|
|
uuidgen: $(UUIDGEN_OBJS) $(DEPLIBUUID)
|
|
$(CC) $(ALL_LDFLAGS) -o uuidgen $(UUIDGEN_OBJS) $(LIBUUID)
|
|
|
|
dumpe2fs: $(DUMPE2FS_OBJS) $(DEPLIBS_E2P) $(DEPLIBUUID)
|
|
$(CC) $(ALL_LDFLAGS) -o dumpe2fs $(DUMPE2FS_OBJS) $(LIBS_E2P) $(LIBUUID)
|
|
|
|
fsck: $(FSCK_OBJS)
|
|
$(CC) $(ALL_LDFLAGS) -o fsck $(FSCK_OBJS) $(LIBS)
|
|
|
|
badblocks: $(BADBLOCKS_OBJS) $(DEPLIBS)
|
|
$(CC) $(ALL_LDFLAGS) -o badblocks $(BADBLOCKS_OBJS) $(LIBS)
|
|
|
|
tune2fs.8: $(DEP_SUBSTITUTE) $(srcdir)/tune2fs.8.in
|
|
$(SUBSTITUTE) $(srcdir)/tune2fs.8.in tune2fs.8
|
|
|
|
mklost+found.8: $(DEP_SUBSTITUTE) $(srcdir)/mklost+found.8.in
|
|
$(SUBSTITUTE) $(srcdir)/mklost+found.8.in mklost+found.8
|
|
|
|
mke2fs.8: $(DEP_SUBSTITUTE) $(srcdir)/mke2fs.8.in
|
|
$(SUBSTITUTE) $(srcdir)/mke2fs.8.in mke2fs.8
|
|
|
|
e2label.8: $(DEP_SUBSTITUTE) $(srcdir)/e2label.8.in
|
|
$(SUBSTITUTE) $(srcdir)/e2label.8.in e2label.8
|
|
|
|
findfs.8: $(DEP_SUBSTITUTE) $(srcdir)/findfs.8.in
|
|
$(SUBSTITUTE) $(srcdir)/findfs.8.in findfs.8
|
|
|
|
e2image.8: $(DEP_SUBSTITUTE) $(srcdir)/e2image.8.in
|
|
$(SUBSTITUTE) $(srcdir)/e2image.8.in e2image.8
|
|
|
|
dumpe2fs.8: $(DEP_SUBSTITUTE) $(srcdir)/dumpe2fs.8.in
|
|
$(SUBSTITUTE) $(srcdir)/dumpe2fs.8.in dumpe2fs.8
|
|
|
|
badblocks.8: $(DEP_SUBSTITUTE) $(srcdir)/badblocks.8.in
|
|
$(SUBSTITUTE) $(srcdir)/badblocks.8.in badblocks.8
|
|
|
|
fsck.8: $(DEP_SUBSTITUTE) $(srcdir)/fsck.8.in
|
|
$(SUBSTITUTE) $(srcdir)/fsck.8.in fsck.8
|
|
|
|
chattr.1: $(DEP_SUBSTITUTE) $(srcdir)/chattr.1.in
|
|
$(SUBSTITUTE) $(srcdir)/chattr.1.in chattr.1
|
|
|
|
lsattr.1: $(DEP_SUBSTITUTE) $(srcdir)/lsattr.1.in
|
|
$(SUBSTITUTE) $(srcdir)/lsattr.1.in lsattr.1
|
|
|
|
uuidgen.1: $(DEP_SUBSTITUTE) $(srcdir)/uuidgen.1.in
|
|
$(SUBSTITUTE) $(srcdir)/uuidgen.1.in uuidgen.1
|
|
|
|
installdirs:
|
|
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(sbindir) \
|
|
$(DESTDIR)$(root_sbindir) $(DESTDIR)$(bindir) \
|
|
$(DESTDIR)$(man1dir) $(DESTDIR)$(man8dir)
|
|
|
|
install: all $(SMANPAGES) $(UMANPAGES) installdirs
|
|
for i in $(SPROGS); do \
|
|
$(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \
|
|
$(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
|
|
done
|
|
for i in $(USPROGS); do \
|
|
$(INSTALL_PROGRAM) $$i $(DESTDIR)$(sbindir)/$$i; \
|
|
$(STRIP) $(DESTDIR)$(sbindir)/$$i; \
|
|
done
|
|
$(LN) -f $(DESTDIR)$(root_sbindir)/mke2fs \
|
|
$(DESTDIR)$(root_sbindir)/mkfs.ext2
|
|
$(LN) -f $(DESTDIR)$(root_sbindir)/mke2fs \
|
|
$(DESTDIR)$(root_sbindir)/mkfs.ext3
|
|
$(LN) -f $(DESTDIR)$(root_sbindir)/tune2fs \
|
|
$(DESTDIR)$(root_sbindir)/e2label
|
|
$(LN) -f $(DESTDIR)$(root_sbindir)/tune2fs \
|
|
$(DESTDIR)$(root_sbindir)/findfs
|
|
for i in $(UPROGS); do \
|
|
$(INSTALL_PROGRAM) $$i $(DESTDIR)$(bindir)/$$i; \
|
|
$(STRIP) $(DESTDIR)$(bindir)/$$i; \
|
|
done
|
|
for i in $(SMANPAGES); do \
|
|
$(RM) -f $(DESTDIR)$(man8dir)/$$i.gz; \
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
|
|
done
|
|
$(RM) -f $(DESTDIR)$(man8dir)/mkfs.ext2.8.gz \
|
|
$(DESTDIR)$(man8dir)/mkfs.ext3.8.gz
|
|
$(LN) -f $(DESTDIR)$(man8dir)/mke2fs.8 $(DESTDIR)$(man8dir)/mkfs.ext2.8
|
|
$(LN) -f $(DESTDIR)$(man8dir)/mke2fs.8 $(DESTDIR)$(man8dir)/mkfs.ext3.8
|
|
for i in $(UMANPAGES); do \
|
|
$(RM) -f $(DESTDIR)$(man1dir)/$$i.gz; \
|
|
$(INSTALL_DATA) $$i $(DESTDIR)$(man1dir)/$$i; \
|
|
done
|
|
|
|
uninstall:
|
|
for i in $(SPROGS); do \
|
|
$(RM) -f $(DESTDIR)$(root_sbindir)/$$i; \
|
|
done
|
|
for i in $(USPROGS); do \
|
|
$(RM) -f $(DESTDIR)$(sbindir)/$$i; \
|
|
done
|
|
$(RM) -f $(DESTDIR)$(root_sbindir)/mkfs.ext2 \
|
|
$(DESTDIR)$(root_sbindir)/mkfs.ext3
|
|
for i in $(UPROGS); do \
|
|
$(RM) -f $(DESTDIR)$(bindir)/$$i; \
|
|
done
|
|
for i in $(SMANPAGES); do \
|
|
$(RM) -f $(DESTDIR)$(man8dir)/$$i; \
|
|
done
|
|
$(RM) -f $(DESTDIR)$(man8dir)/mkfs.ext2.8 \
|
|
$(DESTDIR)$(man8dir)/mkfs.ext3.8
|
|
for i in $(UMANPAGES); do \
|
|
$(RM) -f $(DESTDIR)$(man1dir)/$$i; \
|
|
done
|
|
|
|
clean:
|
|
$(RM) -f $(SPROGS) $(USPROGS) $(UPROGS) $(UMANPAGES) $(SMANPAGES) \
|
|
base_device base_device.out mke2fs.static \
|
|
\#* *.s *.o *.a *~ core
|
|
|
|
mostlyclean: clean
|
|
distclean: clean
|
|
$(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
|
|
|
|
# +++ Dependency line eater +++
|
|
#
|
|
# Makefile dependencies follow. This must be the last section in
|
|
# the Makefile.in file
|
|
#
|
|
tune2fs.o: $(srcdir)/tune2fs.c $(top_srcdir)/lib/ext2fs/ext2_fs.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
|
|
$(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
|
|
$(top_srcdir)/lib/uuid/uuid.h $(top_srcdir)/lib/e2p/e2p.h \
|
|
$(srcdir)/jfs_user.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
|
|
$(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
|
|
$(srcdir)/util.h $(srcdir)/get_device_by_label.h $(top_srcdir)/version.h \
|
|
$(srcdir)/nls-enable.h
|
|
mklost+found.o: $(srcdir)/mklost+found.c $(top_srcdir)/lib/ext2fs/ext2_fs.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/version.h \
|
|
$(srcdir)/nls-enable.h
|
|
mke2fs.o: $(srcdir)/mke2fs.c $(top_srcdir)/lib/ext2fs/ext2_fs.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/et/com_err.h \
|
|
$(top_srcdir)/lib/uuid/uuid.h $(top_srcdir)/lib/e2p/e2p.h \
|
|
$(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
|
|
$(srcdir)/util.h $(top_srcdir)/version.h $(srcdir)/nls-enable.h
|
|
chattr.o: $(srcdir)/chattr.c $(top_srcdir)/lib/ext2fs/ext2_fs.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/et/com_err.h \
|
|
$(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/version.h $(srcdir)/nls-enable.h
|
|
lsattr.o: $(srcdir)/lsattr.c $(top_srcdir)/lib/ext2fs/ext2_fs.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/et/com_err.h \
|
|
$(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/version.h $(srcdir)/nls-enable.h
|
|
dumpe2fs.o: $(srcdir)/dumpe2fs.c $(top_srcdir)/lib/ext2fs/ext2_fs.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
|
|
$(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
|
|
$(top_srcdir)/lib/e2p/e2p.h $(srcdir)/jfs_user.h \
|
|
$(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
|
|
$(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/uuid/uuid.h \
|
|
$(top_srcdir)/version.h $(srcdir)/nls-enable.h
|
|
badblocks.o: $(srcdir)/badblocks.c $(top_srcdir)/lib/et/com_err.h \
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
|
|
$(srcdir)/nls-enable.h
|
|
fsck.o: $(srcdir)/fsck.c $(top_srcdir)/version.h $(srcdir)/nls-enable.h \
|
|
$(srcdir)/fsck.h $(srcdir)/get_device_by_label.h
|
|
util.o: $(srcdir)/util.c $(top_srcdir)/lib/et/com_err.h \
|
|
$(top_srcdir)/lib/e2p/e2p.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
|
|
$(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
|
|
$(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
|
|
$(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/nls-enable.h \
|
|
$(srcdir)/get_device_by_label.h $(srcdir)/util.h
|
|
uuidgen.o: $(srcdir)/uuidgen.c $(top_srcdir)/lib/uuid/uuid.h \
|
|
$(srcdir)/nls-enable.h
|
|
fstype.o: $(srcdir)/fstype.c $(srcdir)/fsck.h
|