| # |
| # 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 blkid $(E2IMAGE_PROG) @FSCK_PROG@ |
| USPROGS= mklost+found |
| SMANPAGES= tune2fs.8 mklost+found.8 mke2fs.8 dumpe2fs.8 badblocks.8 \ |
| e2label.8 findfs.8 blkid.8 $(E2IMAGE_MAN) @FSCK_MAN@ |
| |
| UPROGS= chattr lsattr uuidgen |
| UMANPAGES= chattr.1 lsattr.1 uuidgen.1 |
| |
| TUNE2FS_OBJS= tune2fs.o util.o |
| MKLPF_OBJS= mklost+found.o |
| MKE2FS_OBJS= mke2fs.o util.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 base_device.o |
| BLKID_OBJS= blkid.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)/blkid.c |
| |
| LIBS= $(LIBEXT2FS) $(LIBCOM_ERR) |
| DEPLIBS= $(LIBEXT2FS) $(LIBCOM_ERR) |
| |
| STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) |
| STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) |
| |
| LIBS_BLKID= $(LIBBLKID) $(LIBUUID) |
| DEPLIBS_BLKID= $(LIBBLKID) $(DEPLIBUUID) |
| |
| 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) $(DEPLIBS_BLKID) |
| $(CC) $(ALL_LDFLAGS) -o tune2fs $(TUNE2FS_OBJS) $(LIBS_BLKID) \ |
| $(LIBS_E2P) $(LIBUUID) |
| |
| blkid: $(BLKID_OBJS) $(DEPLIBS_E2P) $(DEPLIBS_BLKID) |
| $(CC) $(ALL_LDFLAGS) -o blkid $(BLKID_OBJS) $(LIBS_E2P) $(LIBS_BLKID) |
| |
| 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 |
| |
| 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) $(DEPLIBS_BLKID) |
| $(CC) $(ALL_LDFLAGS) -o mke2fs $(MKE2FS_OBJS) $(LIBS) $(LIBS_BLKID) \ |
| $(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) $(DEBLIBS_BLKID) |
| $(CC) $(ALL_LDFLAGS) -o fsck $(FSCK_OBJS) $(LIBS) $(LIBS_BLKID) |
| |
| 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 |
| |
| blkid.8: $(DEP_SUBSTITUTE) $(srcdir)/blkid.8.in |
| $(SUBSTITUTE) $(srcdir)/blkid.8.in blkid.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 |
| |
| blkid.1: $(DEP_SUBSTITUTE) $(srcdir)/blkid.1.in |
| $(SUBSTITUTE) $(srcdir)/blkid.1.in blkid.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 \ |
| for j in $(COMPRESS_EXT); do \ |
| $(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \ |
| done; \ |
| $(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 $(top_srcdir)/lib/blkid/blkid.h \ |
| $(top_builddir)/lib/blkid/blkid_types.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 $(top_srcdir)/lib/blkid/blkid.h \ |
| $(top_builddir)/lib/blkid/blkid_types.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 \ |
| $(top_srcdir)/lib/blkid/blkid.h $(top_builddir)/lib/blkid/blkid_types.h \ |
| $(srcdir)/util.h |
| uuidgen.o: $(srcdir)/uuidgen.c $(top_srcdir)/lib/uuid/uuid.h \ |
| $(srcdir)/nls-enable.h |
| blkid.o: $(srcdir)/blkid.c $(top_srcdir)/lib/blkid/blkid.h \ |
| $(top_builddir)/lib/blkid/blkid_types.h |