blob: aa3a7b8196d3c14619423ed4ca18acc7705d6572 [file] [log] [blame]
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +00001#
2# Standard e2fsprogs prologue....
3#
4
5srcdir = @srcdir@
6top_srcdir = @top_srcdir@
7VPATH = @srcdir@
8top_builddir = ..
9my_dir = resize
10INSTALL = @INSTALL@
Theodore Ts'o0e14f781998-02-27 06:04:23 +000011LDFLAG_STATIC = @LDFLAG_STATIC@
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000012
13@MCONFIG@
14
15PROGS= resize2fs
Theodore Ts'oc762c8e1997-06-17 03:52:12 +000016TEST_PROGS= test_extent
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000017MANPAGES= resize2fs.8
18
Theodore Ts'oa8519a21998-02-16 22:16:20 +000019RESIZE_OBJS= extent.o resize2fs.o main.o sim_progress.o
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000020
Theodore Ts'oc762c8e1997-06-17 03:52:12 +000021TEST_EXTENT_OBJS= extent.o test_extent.o
22
23SRCS= $(srcdir)/extent.c \
Theodore Ts'o052db4b1997-06-12 07:14:32 +000024 $(srcdir)/resize2fs.c \
Theodore Ts'oc762c8e1997-06-17 03:52:12 +000025 $(srcdir)/main.c \
26 $(srcdir)/sim_progress.c
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000027
Theodore Ts'ofac9c201998-03-07 23:36:45 +000028LIBS= $(LIBEXT2FS) $(LIBCOM_ERR)
29DEPLIBS= $(LIBEXT2FS) $(LIBCOM_ERR)
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000030
Theodore Ts'ofac9c201998-03-07 23:36:45 +000031STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR)
32STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR)
Theodore Ts'o0e14f781998-02-27 06:04:23 +000033
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000034.c.o:
35 $(CC) -c $(ALL_CFLAGS) $< -o $@
36
Theodore Ts'o0cee8a52000-04-06 21:38:34 +000037all:: $(PROGS) $(TEST_PROGS) $(MANPAGES)
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000038
39resize2fs: $(RESIZE_OBJS) $(DEPLIBS)
40 $(CC) $(ALL_LDFLAGS) -o resize2fs $(RESIZE_OBJS) $(LIBS)
41
Theodore Ts'o0e14f781998-02-27 06:04:23 +000042resize2fs.static: $(RESIZE_OBJS) $(STATIC_DEPLIBS)
43 $(LD) $(ALL_LDFLAGS) $(LDFLAG_STATIC) -o resize2fs.static \
44 $(RESIZE_OBJS) $(STATIC_LIBS)
45
Theodore Ts'o44339bd1997-10-15 02:47:20 +000046resize2fs.8: $(DEP_SUBSTITUTE) $(srcdir)/resize2fs.8.in
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000047 $(SUBSTITUTE) $(srcdir)/resize2fs.8.in resize2fs.8
48
Theodore Ts'oc762c8e1997-06-17 03:52:12 +000049test_extent: $(TEST_EXTENT_OBJS)
50 $(CC) $(ALL_LDFLAGS) -o test_extent $(TEST_EXTENT_OBJS) $(LIBS)
51
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000052installdirs:
Theodore Ts'od171c5b1998-04-03 16:07:06 +000053 $(top_srcdir)/mkinstalldirs $(DESTDIR)$(sbindir) \
54 $(DESTDIR)$(man8dir)
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000055
56install: $(PROGS) $(MANPAGES) installdirs
57 for i in $(PROGS); do \
Theodore Ts'od171c5b1998-04-03 16:07:06 +000058 $(INSTALL_PROGRAM) $$i $(DESTDIR)$(sbindir)/$$i; \
59 $(STRIP) $(DESTDIR)$(sbindir)/$$i; \
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000060 done
61 for i in $(MANPAGES); do \
62 $(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
63 done
64
65uninstall:
66 for i in $(PROGS); do \
Theodore Ts'od171c5b1998-04-03 16:07:06 +000067 $(RM) -f $(DESTDIR)$(sbindir)/$$i; \
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000068 done
69 for i in $(MANPAGES); do \
Theodore Ts'od171c5b1998-04-03 16:07:06 +000070 $(RM) -f $(DESTDIR)$(man8dir)/$$i; \
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000071 done
72
Theodore Ts'oc762c8e1997-06-17 03:52:12 +000073test_extent.out: test_extent $(srcdir)/test_extent.in
74 ./test_extent < $(srcdir)/test_extent.in > test_extent.out
75
76check: test_extent.out
77 @if cmp -s test_extent.out $(srcdir)/test_extent.in ; then \
78 echo "Test succeeded." ; \
79 else \
80 echo "Test failed!" ; \
81 diff test_extent.out $(srcdir)/test_extent.in ; \
82 exit 1 ; \
83 fi
84
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000085clean:
Theodore Ts'oc762c8e1997-06-17 03:52:12 +000086 $(RM) -f $(PROGS) $(TEST_PROGS) $(MANPAGES) \#* *.s *.o *.a *~ core \
Theodore Ts'o790a0ad41999-07-19 16:16:12 +000087 resize2fs.static test_extent.out
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000088
89mostlyclean: clean
Theodore Ts'o5c36a2f1999-11-19 18:42:30 +000090
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000091distclean: clean
Theodore Ts'o5c36a2f1999-11-19 18:42:30 +000092 $(RM) -f .depend Makefile $(srcdir)/TAGS $(srcdir)/Makefile.in.old
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000093
Theodore Ts'oc762c8e1997-06-17 03:52:12 +000094#
95# Kludge to create a "special" e2fsprogs distribution file.
96#
97
98SRCROOT = `echo e2fsprogs-@E2FSPROGS_VERSION@ | sed -e 's/-WIP//' \
99 -e 's/pre-//' -e 's/-PLUS//'`
100TAR=tar
101
102$(top_srcdir)/.exclude-file:
Theodore Ts'o8e74e661997-06-17 05:36:04 +0000103 a=$(SRCROOT); \
Theodore Ts'oc762c8e1997-06-17 03:52:12 +0000104 (cd $(top_srcdir)/.. ; find e2fsprogs \( -name \*~ -o -name \*.orig \
Theodore Ts'o8e74e661997-06-17 05:36:04 +0000105 -o -name CVS -o -name \*.rej \) -print) \
106 | sed -e "s/e2fsprogs/$$a/" > $(top_srcdir)/.exclude-file
Theodore Ts'oc762c8e1997-06-17 03:52:12 +0000107 echo "$(SRCROOT)/build" >> $(top_srcdir)/.exclude-file
108 echo "$(SRCROOT)/rpm.log" >> $(top_srcdir)/.exclude-file
Theodore Ts'ofac9c201998-03-07 23:36:45 +0000109 echo "$(SRCROOT)/powerquest" >> $(top_srcdir)/.exclude-file
Theodore Ts'oc762c8e1997-06-17 03:52:12 +0000110 echo "$(SRCROOT)/.exclude-file" >> $(top_srcdir)/.exclude-file
111 echo $(SRCROOT)/e2fsprogs-@E2FSPROGS_VERSION@.tar.gz \
112 >> $(top_srcdir)/.exclude-file
Theodore Ts'ofac9c201998-03-07 23:36:45 +0000113 echo $(SRCROOT)/e2fsprogs-ALL-@E2FSPROGS_VERSION@.tar.gz \
114 >> $(top_srcdir)/.exclude-file
Theodore Ts'oc762c8e1997-06-17 03:52:12 +0000115
116source_tar_file: $(top_srcdir)/.exclude-file
117 (cd $(top_srcdir)/..; a=$(SRCROOT); rm -f $$a ; ln -sf e2fsprogs $$a ; \
118 $(TAR) -c -h -v -f - \
119 -X $$a/.exclude-file $$a | \
Theodore Ts'ofac9c201998-03-07 23:36:45 +0000120 gzip -9 > e2fsprogs-ALL-@E2FSPROGS_VERSION@.tar.gz)
Theodore Ts'oc762c8e1997-06-17 03:52:12 +0000121 rm -f $(top_srcdir)/.exclude-file
122
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000123# +++ Dependency line eater +++
124#
125# Makefile dependencies follow. This must be the last section in
126# the Makefile.in file
127#
Theodore Ts'o8e74e661997-06-17 05:36:04 +0000128extent.o: $(srcdir)/extent.c $(srcdir)/resize2fs.h \
Theodore Ts'o0cee8a52000-04-06 21:38:34 +0000129 $(top_srcdir)/include/linux/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
130 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
131 $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h
Theodore Ts'o8e74e661997-06-17 05:36:04 +0000132resize2fs.o: $(srcdir)/resize2fs.c $(srcdir)/resize2fs.h \
Theodore Ts'o0cee8a52000-04-06 21:38:34 +0000133 $(top_srcdir)/include/linux/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
134 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
135 $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h
Theodore Ts'o8e74e661997-06-17 05:36:04 +0000136main.o: $(srcdir)/main.c $(srcdir)/resize2fs.h \
Theodore Ts'o0cee8a52000-04-06 21:38:34 +0000137 $(top_srcdir)/include/linux/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
138 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
139 $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h \
140 $(srcdir)/../version.h
Theodore Ts'o8e74e661997-06-17 05:36:04 +0000141sim_progress.o: $(srcdir)/sim_progress.c $(srcdir)/resize2fs.h \
Theodore Ts'o0cee8a52000-04-06 21:38:34 +0000142 $(top_srcdir)/include/linux/ext2_fs.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
143 $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
144 $(top_builddir)/lib/ext2fs/ext2_err.h $(top_srcdir)/lib/ext2fs/bitops.h