Whamcloud - gitweb
Makefile.in: Fix the kernel compile-time echo commands to be
authorTheodore Ts'o <tytso@mit.edu>
Wed, 19 Jan 2005 05:25:25 +0000 (00:25 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 19 Jan 2005 05:25:25 +0000 (00:25 -0500)
consistent and portable

doc/ChangeLog
doc/Makefile.in
lib/blkid/ChangeLog
lib/blkid/Makefile.in
lib/ext2fs/ChangeLog
lib/ext2fs/Makefile.in
lib/ss/ChangeLog
lib/ss/Makefile.in
lib/uuid/ChangeLog
lib/uuid/Makefile.in

index aba8a0d..e2aeb69 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-18  Theodore Ts'o  <tytso@mit.edu>
+
+       * Makefile.in: Fix the kernel compile-time echo commands to be
+               consistent and portable
+
 2005-01-07  Theodore Ts'o  <tytso@mit.edu>
 
        * libblkid.txt: Fix minor typo's --- thanks to Mike Castle
index cd8eaa2..a401fce 100644 (file)
@@ -33,11 +33,11 @@ uninstall-doc-libs:
        $(RM) -rf $(DESTDIR)$(infodir)/libext2fs.info*
 
 libext2fs.info: $(srcdir)/libext2fs.texinfo
-       @echo " MAKEINFO $<"
+       @echo " MAKEINFO $@"
        -@$(INFO) $(srcdir)/libext2fs.texinfo
 
 libext2fs.dvi: $(srcdir)/libext2fs.texinfo
-       @echo " TEXI2DVI $<"
+       @echo " TEXI2DVI $@"
        -@$(DVI) $(srcdir)/libext2fs.texinfo
 
 .PHONY: distclean
index c693c8b..ec1b98f 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-18  Theodore Ts'o  <tytso@mit.edu>
+
+       * Makefile.in: Fix the kernel compile-time echo commands to be
+               consistent and portable
+
 2005-01-13  Matthias Andree  <matthias.andree@gmx.de>
 
        * getsize.c: Move #include "blkidP.h" before <sys/queues.h> to avoid a
index e78da2e..b70bae6 100644 (file)
@@ -63,48 +63,48 @@ DEPLIBS_BLKID=      $(DEPSTATIC_LIBBLKID) $(DEPSTATIC_LIBUUID)
 all:: $(SMANPAGES)
 
 $(top_builddir)/lib/blkid/blkid_types.h: $(srcdir)/blkid_types.h.in $(top_builddir)/config.status
-       @echo " CONFIG.STATUS $<"
+       @echo " CONFIG.STATUS $@"
        @cd $(top_builddir); \
                CONFIG_FILES=$(my_dir)/blkid_types.h ./config.status
 
 libblkid.3: $(DEP_SUBSTITUTE) $(srcdir)/libblkid.3.in
-       @echo " CC $<"
+       @echo " SUBST $@"
        @$(SUBSTITUTE_UPTIME) $(srcdir)/libblkid.3.in libblkid.3
 
 tst_cache: $(srcdir)/cache.c $(DEPLIBS_BLKID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_cache -DTEST_PROGRAM $(srcdir)/cache.c $(LIBS_BLKID) $(ALL_CFLAGS)
 
 tst_dev: $(srcdir)/dev.c $(DEPLIBS_BLKID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_dev -DTEST_PROGRAM $(srcdir)/dev.c $(LIBS_BLKID) $(ALL_CFLAGS)
 
 tst_devname: $(srcdir)/devname.c $(DEPLIBS_BLKID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_devname -DTEST_PROGRAM $(srcdir)/devname.c $(LIBS_BLKID) $(ALL_CFLAGS)
 
 tst_devno: $(srcdir)/devno.c $(DEPLIBS_BLKID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_devno -DTEST_PROGRAM $(srcdir)/devno.c $(LIBS_BLKID) $(ALL_CFLAGS)
 
 tst_getsize: $(srcdir)/getsize.c $(DEPLIBS_BLKID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_getsize -DTEST_PROGRAM $(srcdir)/getsize.c $(LIBS_BLKID) $(ALL_CFLAGS)
 
 tst_probe: $(srcdir)/probe.c $(DEPLIBS_BLKID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_probe -DTEST_PROGRAM $(srcdir)/probe.c $(LIBS_BLKID) $(ALL_CFLAGS)
 
 tst_read: $(srcdir)/read.c $(DEPLIBS_BLKID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_read -DTEST_PROGRAM $(srcdir)/read.c $(LIBS_BLKID) $(ALL_CFLAGS)
 
 tst_resolve: $(srcdir)/resolve.c $(DEPLIBS_BLKID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_resolve -DTEST_PROGRAM $(srcdir)/resolve.c $(LIBS_BLKID) $(ALL_CFLAGS)
 
 tst_save: $(srcdir)/save.c $(DEPLIBS_BLKID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_save -DTEST_PROGRAM $(srcdir)/save.c $(LIBS_BLKID) $(ALL_CFLAGS)
 
 ../../misc/blkid.o: $(top_srcdir)/misc/blkid.c blkid.h
@@ -113,7 +113,7 @@ tst_save: $(srcdir)/save.c $(DEPLIBS_BLKID)
                -o ../../misc/blkid.o
 
 blkid: ../../misc/blkid.o libblkid.a $(DEPLIBUUID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o blkid ../../misc/blkid.o libblkid.a $(LIBUUID)
 
 check:: all tst_cache tst_devname tst_devno tst_getsize tst_probe \
index 260cd2f..c0dc827 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-18  Theodore Ts'o  <tytso@mit.edu>
+
+       * Makefile.in: Fix the kernel compile-time echo commands to be
+               consistent and portable
+
 2005-01-07  Theodore Ts'o  <tytso@mit.edu>
 
        * unlink.c (ext2fs_unlink): If both the name and the inode number
index 931e9b0..75fb344 100644 (file)
@@ -175,47 +175,47 @@ ext2_err.et: $(DEP_SUBSTITUTE) $(srcdir)/ext2_err.et.in
        @$(SUBSTITUTE) $(srcdir)/ext2_err.et.in ext2_err.et
 
 ext2_err.c ext2_err.h: ext2_err.et
-       @echo " COMPILE_ET $<"
+       @echo " COMPILE_ET ex2_err.et"
        @$(COMPILE_ET) ext2_err.et
 
 tst_badblocks: tst_badblocks.o freefs.o \
                read_bb_file.o write_bb_file.o badblocks.o 
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_badblocks tst_badblocks.o freefs.o \
                read_bb_file.o write_bb_file.o badblocks.o \
                inline.o bitops.o gen_bitmap.o $(LIBCOM_ERR)
 
 tst_iscan: tst_iscan.o inode.o badblocks.o test_io.o $(STATIC_LIBEXT2FS)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_iscan tst_iscan.o inode.o badblocks.o test_io.o \
                $(STATIC_LIBEXT2FS) $(LIBCOM_ERR)
 
 tst_getsize: tst_getsize.o getsize.o $(STATIC_LIBEXT2FS)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_getsize tst_getsize.o getsize.o $(STATIC_LIBEXT2FS) \
                $(LIBCOM_ERR)
 
 tst_ismounted: $(srcdir)/ismounted.c $(STATIC_LIBEXT2FS)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_ismounted $(srcdir)/ismounted.c -DDEBUG $(ALL_CFLAGS) $(LIBCOM_ERR) 
 
 tst_byteswap: tst_byteswap.o bitops.o $(STATIC_LIBEXT2FS)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_byteswap tst_byteswap.o bitops.o $(STATIC_LIBEXT2FS) \
                $(LIBCOM_ERR)
 
 tst_bitops: tst_bitops.o inline.o $(STATIC_LIBEXT2FS)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_bitops tst_bitops.o inline.o \
                $(STATIC_LIBEXT2FS) $(LIBCOM_ERR)
 
 tst_getsectsize: tst_getsectsize.o getsectsize.o $(STATIC_LIBEXT2FS)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o tst_sectgetsize tst_getsectsize.o getsectsize.o \
                -DDEBUG $(STATIC_LIBEXT2FS) $(LIBCOM_ERR)
 
 mkjournal: mkjournal.c $(STATIC_LIBEXT2FS)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) -o mkjournal $(srcdir)/mkjournal.c -DDEBUG $(STATIC_LIBEXT2FS) $(LIBCOM_ERR) $(ALL_CFLAGS)
 
 check:: tst_badblocks tst_iscan @SWAPFS_CMT@ tst_byteswap
index 06fce66..99d5d46 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-18  Theodore Ts'o  <tytso@mit.edu>
+
+       * Makefile.in: Fix the kernel compile-time echo commands to be
+               consistent and portable
+
 2004-12-14  Theodore Ts'o  <tytso@mit.edu>
 
        * Makefile.in: Use Linux-kernel-style makefile output for "make
index ca1bf2d..d1282d2 100644 (file)
@@ -102,7 +102,7 @@ std_rqs.c: std_rqs.ct mk_cmds
        @DIR=$(srcdir) $(MK_CMDS) $(srcdir)/std_rqs.ct
 
 ss_err.c ss_err.h: ss_err.et
-       @echo " COMPILE_ET $<"
+       @echo " COMPILE_ET ss_err.et"
        @$(COMPILE_ET) $(srcdir)/ss_err.et
 
 ct.tab.c ct.tab.h: ct.y
index 297c573..0a76257 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-18  Theodore Ts'o  <tytso@mit.edu>
+
+       * Makefile.in: Fix the kernel compile-time echo commands to be
+               consistent and portable
+
 2005-01-17  Theodore Ts'o  <tytso@mit.edu>
 
        * uuidP.h: Use inttypes.h in preference to stdint.h for
index 911a9e8..010233e 100644 (file)
@@ -77,48 +77,48 @@ tst_uuid.o: $(srcdir)/tst_uuid.c
        @$(CC) $(ALL_CFLAGS) -c $(srcdir)/tst_uuid.c -o tst_uuid.o
 
 tst_uuid: tst_uuid.o $(DEPSTATIC_LIBUUID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) $(ALL_LDFLAGS) -o tst_uuid tst_uuid.o $(STATIC_LIBUUID)
 
 uuid_time: $(srcdir)/uuid_time.c $(DEPLIBUUID)
-       @echo " LD $<"
+       @echo " LD $@"
        @$(CC) $(ALL_CFLAGS) -DDEBUG -o uuid_time $(srcdir)/uuid_time.c \
                $(LIBUUID)
 
 uuid.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid.3.in
-       @echo " SUBST $<"
+       @echo " SUBST $@"
        @$(SUBSTITUTE_UPTIME) $(srcdir)/uuid.3.in uuid.3
 
 uuid_clear.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_clear.3.in
-       @echo " SUBST $<"
+       @echo " SUBST $@"
        @$(SUBSTITUTE_UPTIME) $(srcdir)/uuid_clear.3.in uuid_clear.3
 
 uuid_compare.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_compare.3.in
-       @echo " SUBST $<"
+       @echo " SUBST $@"
        @$(SUBSTITUTE_UPTIME) $(srcdir)/uuid_compare.3.in uuid_compare.3
 
 uuid_copy.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_copy.3.in
-       @echo " SUBST $<"
+       @echo " SUBST $@"
        @$(SUBSTITUTE_UPTIME) $(srcdir)/uuid_copy.3.in uuid_copy.3
 
 uuid_generate.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_generate.3.in
-       @echo " SUBST $<"
+       @echo " SUBST $@"
        @$(SUBSTITUTE_UPTIME) $(srcdir)/uuid_generate.3.in uuid_generate.3
 
 uuid_is_null.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_is_null.3.in
-       @echo " SUBST $<"
+       @echo " SUBST $@"
        @$(SUBSTITUTE_UPTIME) $(srcdir)/uuid_is_null.3.in uuid_is_null.3
 
 uuid_parse.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_parse.3.in
-       @echo " SUBST $<"
+       @echo " SUBST $@"
        @$(SUBSTITUTE_UPTIME) $(srcdir)/uuid_parse.3.in uuid_parse.3
 
 uuid_time.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_time.3.in
-       @echo " SUBST $<"
+       @echo " SUBST $@"
        @$(SUBSTITUTE_UPTIME) $(srcdir)/uuid_time.3.in uuid_time.3
 
 uuid_unparse.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_unparse.3.in
-       @echo " SUBST $<"
+       @echo " SUBST $@"
        @$(SUBSTITUTE_UPTIME) $(srcdir)/uuid_unparse.3.in uuid_unparse.3
 
 installdirs::