diff options
author | Theodore Ts'o <tytso@mit.edu> | 2004-11-30 10:52:27 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2004-11-30 10:52:27 -0500 |
commit | 47204ff9830b17fc6317f48e88d2039f57a5d10a (patch) | |
tree | 8d57bc9cd5f44e7e142d3bac9c4327b982e2f321 /util | |
parent | 39dc1c45cb41ce37a56d364103bb852d0b62c835 (diff) | |
download | e2fsprogs-47204ff9830b17fc6317f48e88d2039f57a5d10a.tar.gz |
Use Linux-kernel-style makefile output to make it easier to
see errors/warnings.
Diffstat (limited to 'util')
-rw-r--r-- | util/ChangeLog | 5 | ||||
-rw-r--r-- | util/Makefile.in | 11 |
2 files changed, 12 insertions, 4 deletions
diff --git a/util/ChangeLog b/util/ChangeLog index ec2a01c0..60574226 100644 --- a/util/ChangeLog +++ b/util/ChangeLog @@ -1,3 +1,8 @@ +2004-11-30 Theodore Ts'o <tytso@mit.edu> + + * Makefile.in: Use Linux-kernel-style makefile output to make it + easier to see errors/warnings. + 2004-04-03 Theodore Ts'o <tytso@mit.edu> * subst.c (main): Add new option to update the timestamp of the diff --git a/util/Makefile.in b/util/Makefile.in index 1c5c9a17..634cd753 100644 --- a/util/Makefile.in +++ b/util/Makefile.in @@ -14,18 +14,21 @@ SRCS = $(srcdir)/subst.c @MCONFIG@ .c.o: - $(BUILD_CC) -c $(ALL_CFLAGS) $< -o $@ + @echo " CC $<" + @$(BUILD_CC) -c $(ALL_CFLAGS) $< -o $@ PROGS= subst all:: $(PROGS) gen-tarball subst: subst.o - $(BUILD_CC) $(ALL_LDFLAGS) -o subst subst.o + @echo " LD $@" + @$(BUILD_CC) $(ALL_LDFLAGS) -o subst subst.o gen-tarball: $(srcdir)/gen-tarball.in $(top_builddir)/config.status - cd $(top_builddir); CONFIG_FILES=util/gen-tarball ./config.status - chmod +x gen-tarball + @echo " CONFIG.STATUS $@" + @cd $(top_builddir); CONFIG_FILES=util/gen-tarball ./config.status + @chmod +x gen-tarball tarballs: gen-tarball sh gen-tarball debian |