| # |
| # Standard e2fsprogs prologue.... |
| # |
| |
| srcdir = @srcdir@ |
| top_srcdir = @top_srcdir@ |
| VPATH = @srcdir@ |
| top_builddir = .. |
| my_dir = misc |
| INSTALL = @INSTALL@ |
| |
| @MCONFIG@ |
| |
| SPROGS= mke2fs badblocks tune2fs dumpe2fs e2label @FSCK_PROG@ |
| USPROGS= mklost+found |
| SMANPAGES= tune2fs.8 mklost+found.8 mke2fs.8 dumpe2fs.8 badblocks.8 \ |
| e2label.8 @FSCK_MAN@ |
| |
| UPROGS= chattr lsattr uuidgen |
| UMANPAGES= chattr.1 lsattr.1 uuidgen.1 |
| |
| TUNE2FS_OBJS= tune2fs.o |
| MKLPF_OBJS= mklost+found.o |
| MKE2FS_OBJS= mke2fs.o |
| CHATTR_OBJS= chattr.o |
| LSATTR_OBJS= lsattr.o |
| UUIDGEN_OBJS= uuidgen.o |
| DUMPE2FS_OBJS= dumpe2fs.o |
| BADBLOCKS_OBJS= badblocks.o |
| E2LABEL_OBJS= e2label.o |
| FSCK_OBJS= fsck.o get_device_by_label.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)/uuidgen.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) |
| |
| tune2fs: $(TUNE2FS_OBJS) $(DEPLIBS_E2P) $(LIBUUID) |
| $(CC) $(ALL_LDFLAGS) -o tune2fs $(TUNE2FS_OBJS) $(LIBS_E2P) $(LIBUUID) |
| |
| e2label: $(E2LABEL_OBJS) |
| $(CC) $(ALL_LDFLAGS) -o e2label $(E2LABEL_OBJS) |
| |
| mklost+found: $(MKLPF_OBJS) |
| $(CC) $(ALL_LDFLAGS) -o mklost+found $(MKLPF_OBJS) |
| |
| mke2fs: $(MKE2FS_OBJS) $(DEPLIBS) $(LIBUUID) |
| $(CC) $(ALL_LDFLAGS) -o mke2fs $(MKE2FS_OBJS) $(LIBS) $(LIBUUID) |
| |
| mke2fs.static: $(MKE2FS_OBJS) $(STATIC_DEPLIBS) $(STATIC_LIBUUID) |
| $(CC) $(ALL_LDFLAGS) -static -o mke2fs.static $(MKE2FS_OBJS) \ |
| $(STATIC_LIBS) $(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) $(LIBUUID) |
| $(CC) $(ALL_LDFLAGS) -o uuidgen $(UUIDGEN_OBJS) $(LIBUUID) |
| |
| dumpe2fs: $(DUMPE2FS_OBJS) $(DEPLIBS_E2P) |
| $(CC) $(ALL_LDFLAGS) -o dumpe2fs $(DUMPE2FS_OBJS) $(LIBS_E2P) |
| |
| fsck: $(FSCK_OBJS) |
| $(CC) $(ALL_LDFLAGS) -o fsck $(FSCK_OBJS) |
| |
| 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 |
| |
| 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 |
| for i in $(UPROGS); do \ |
| $(INSTALL_PROGRAM) $$i $(DESTDIR)$(bindir)/$$i; \ |
| $(STRIP) $(DESTDIR)$(bindir)/$$i; \ |
| done |
| for i in $(SMANPAGES); do \ |
| $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \ |
| done |
| for i in $(UMANPAGES); do \ |
| $(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 |
| for i in $(UPROGS); do \ |
| $(RM) -f $(DESTDIR)$(bindir)/$$i; \ |
| done |
| for i in $(SMANPAGES); do \ |
| $(RM) -f $(DESTDIR)$(man8dir)/$$i; \ |
| done |
| for i in $(UMANPAGES); do \ |
| $(RM) -f $(DESTDIR)$(man1dir)/$$i; \ |
| done |
| |
| clean: |
| $(RM) -f $(SPROGS) $(USPROGS) $(UPROGS) $(UMANPAGES) $(SMANPAGES) \ |
| mke2fs.static \#* *.s *.o *.a *~ core |
| |
| mostlyclean: clean |
| distclean: clean |
| $(RM) -f .depend Makefile |
| |
| # +++ 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/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)/../version.h |
| mklost+found.o: $(srcdir)/mklost+found.c $(srcdir)/../version.h |
| mke2fs.o: $(srcdir)/mke2fs.c $(top_srcdir)/lib/et/com_err.h \ |
| $(top_srcdir)/lib/uuid/uuid.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)/../version.h |
| chattr.o: $(srcdir)/chattr.c $(top_srcdir)/lib/et/com_err.h \ |
| $(top_srcdir)/lib/e2p/e2p.h $(srcdir)/../version.h |
| lsattr.o: $(srcdir)/lsattr.c $(top_srcdir)/lib/et/com_err.h \ |
| $(top_srcdir)/lib/e2p/e2p.h $(srcdir)/../version.h |
| dumpe2fs.o: $(srcdir)/dumpe2fs.c \ |
| $(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)/../version.h |
| badblocks.o: $(srcdir)/badblocks.c $(top_srcdir)/lib/et/com_err.h \ |
| $(top_srcdir)/lib/ext2fs/ext2_io.h |
| fsck.o: $(srcdir)/fsck.c $(srcdir)/../version.h $(srcdir)/fsck.h \ |
| $(srcdir)/get_device_by_label.h |
| uuidgen.o: $(srcdir)/uuidgen.c $(top_srcdir)/lib/uuid/uuid.h |