summaryrefslogtreecommitdiff
path: root/resize/Makefile.in
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>1998-03-07 23:36:45 +0000
committerTheodore Ts'o <tytso@mit.edu>1998-03-07 23:36:45 +0000
commitfac9c206e7eba5c7703df5c65163264412b3f516 (patch)
tree70a7b37870e15a236fa8d9a23e1d403a1b876080 /resize/Makefile.in
parent59fa3695d708a2342436fcb227730d8c47040d8e (diff)
downloade2fsprogs-fac9c206e7eba5c7703df5c65163264412b3f516.tar.gz
Makefile.in, ChangeLog:
Change the name of the complete source file that we built (that includes resize2fs) to be e2fsprogs-ALL-<version>.tar.gz. Don't link with libuuid, since it's not needed. resize2fs.8.in: Add copyright statement. Many files: Update packaging for the resize2fs program.
Diffstat (limited to 'resize/Makefile.in')
-rw-r--r--resize/Makefile.in13
1 files changed, 8 insertions, 5 deletions
diff --git a/resize/Makefile.in b/resize/Makefile.in
index bab4f084..f4510c8a 100644
--- a/resize/Makefile.in
+++ b/resize/Makefile.in
@@ -25,11 +25,11 @@ SRCS= $(srcdir)/extent.c \
$(srcdir)/main.c \
$(srcdir)/sim_progress.c
-LIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBUUID)
-DEPLIBS= $(LIBEXT2FS) $(LIBCOM_ERR) $(LIBUUID)
+LIBS= $(LIBEXT2FS) $(LIBCOM_ERR)
+DEPLIBS= $(LIBEXT2FS) $(LIBCOM_ERR)
-STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(STATIC_LIBUUID)
-STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR) $(STATIC_LIBUUID)
+STATIC_LIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR)
+STATIC_DEPLIBS= $(STATIC_LIBEXT2FS) $(STATIC_LIBCOM_ERR)
.c.o:
$(CC) -c $(ALL_CFLAGS) $< -o $@
@@ -105,15 +105,18 @@ $(top_srcdir)/.exclude-file:
| sed -e "s/e2fsprogs/$$a/" > $(top_srcdir)/.exclude-file
echo "$(SRCROOT)/build" >> $(top_srcdir)/.exclude-file
echo "$(SRCROOT)/rpm.log" >> $(top_srcdir)/.exclude-file
+ echo "$(SRCROOT)/powerquest" >> $(top_srcdir)/.exclude-file
echo "$(SRCROOT)/.exclude-file" >> $(top_srcdir)/.exclude-file
echo $(SRCROOT)/e2fsprogs-@E2FSPROGS_VERSION@.tar.gz \
>> $(top_srcdir)/.exclude-file
+ echo $(SRCROOT)/e2fsprogs-ALL-@E2FSPROGS_VERSION@.tar.gz \
+ >> $(top_srcdir)/.exclude-file
source_tar_file: $(top_srcdir)/.exclude-file
(cd $(top_srcdir)/..; a=$(SRCROOT); rm -f $$a ; ln -sf e2fsprogs $$a ; \
$(TAR) -c -h -v -f - \
-X $$a/.exclude-file $$a | \
- gzip -9 > e2fsprogs-@E2FSPROGS_VERSION@.tar.gz)
+ gzip -9 > e2fsprogs-ALL-@E2FSPROGS_VERSION@.tar.gz)
rm -f $(top_srcdir)/.exclude-file
# +++ Dependency line eater +++