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 /lib/ss | |
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 'lib/ss')
-rw-r--r-- | lib/ss/ChangeLog | 5 | ||||
-rw-r--r-- | lib/ss/Makefile.in | 22 |
2 files changed, 18 insertions, 9 deletions
diff --git a/lib/ss/ChangeLog b/lib/ss/ChangeLog index 426bee23..a2a61f58 100644 --- a/lib/ss/ChangeLog +++ b/lib/ss/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-09-17 Theodore Ts'o <tytso@mit.edu> * mk_cmds.sh.in: Remove XSI:isms for greater portability. diff --git a/lib/ss/Makefile.in b/lib/ss/Makefile.in index e3fe26ed..071419e4 100644 --- a/lib/ss/Makefile.in +++ b/lib/ss/Makefile.in @@ -37,11 +37,12 @@ MK_CMDS=_SS_DIR_OVERRIDE=. ./mk_cmds XTRA_CFLAGS= -I$(srcdir)/../et .c.o: - $(CC) $(ALL_CFLAGS) -c $< -@PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $< -@CHECKER_CMT@ $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $< -@ELF_CMT@ $(CC) $(ALL_CFLAGS) -DSHARED_ELF_LIB -fPIC -o elfshared/$*.o -c $< -@BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) $(BSDLIB_PIC_FLAG) -o pic/$*.o -c $< + @echo " CC $<" + @$(CC) $(ALL_CFLAGS) -c $< +@PROFILE_CMT@ @$(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $< +@CHECKER_CMT@ @$(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $< +@ELF_CMT@ @$(CC) $(ALL_CFLAGS) -DSHARED_ELF_LIB -fPIC -o elfshared/$*.o -c $< +@BSDLIB_CMT@ @$(CC) $(ALL_CFLAGS) $(BSDLIB_PIC_FLAG) -o pic/$*.o -c $< # for the library @@ -97,10 +98,12 @@ FILES= $(SRCS) $(MKCMDSFILES) $(HFILES) \ all:: libss.a # libss_p.a lint std_rqs.c: std_rqs.ct mk_cmds - DIR=$(srcdir) $(MK_CMDS) $(srcdir)/std_rqs.ct + @echo " MK_CMDS $@" + @DIR=$(srcdir) $(MK_CMDS) $(srcdir)/std_rqs.ct ss_err.c ss_err.h: ss_err.et - $(COMPILE_ET) $(srcdir)/ss_err.et + @echo " COMPILE_ET $<" + @$(COMPILE_ET) $(srcdir)/ss_err.et ct.tab.c ct.tab.h: ct.y $(RM) -f ct.tab.* y.* @@ -113,8 +116,9 @@ ct.tab.c ct.tab.h: ct.y # $(CHMOD) -x $@ mk_cmds: $(DEP_SUBSTITUTE) $(srcdir)/mk_cmds.sh.in - $(SUBSTITUTE) $(srcdir)/mk_cmds.sh.in mk_cmds - $(CHMOD) +x mk_cmds + @echo " SUBST $@" + @$(SUBSTITUTE) $(srcdir)/mk_cmds.sh.in mk_cmds + @$(CHMOD) +x mk_cmds installdirs:: $(top_srcdir)/mkinstalldirs $(DESTDIR)$(libdir) \ |