aboutsummaryrefslogtreecommitdiffstats
path: root/util/Makefile.in
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2004-11-30 10:52:27 -0500
committerTheodore Ts'o <tytso@mit.edu>2004-11-30 10:52:27 -0500
commit47204ff9830b17fc6317f48e88d2039f57a5d10a (patch)
tree8d57bc9cd5f44e7e142d3bac9c4327b982e2f321 /util/Makefile.in
parent39dc1c45cb41ce37a56d364103bb852d0b62c835 (diff)
downloadandroid_external_e2fsprogs-47204ff9830b17fc6317f48e88d2039f57a5d10a.tar.gz
android_external_e2fsprogs-47204ff9830b17fc6317f48e88d2039f57a5d10a.tar.bz2
android_external_e2fsprogs-47204ff9830b17fc6317f48e88d2039f57a5d10a.zip
Use Linux-kernel-style makefile output to make it easier to
see errors/warnings.
Diffstat (limited to 'util/Makefile.in')
-rw-r--r--util/Makefile.in11
1 files changed, 7 insertions, 4 deletions
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