diff options
author | Theodore Ts'o <tytso@mit.edu> | 2005-01-19 00:25:25 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2005-01-19 00:25:25 -0500 |
commit | 8800c738350800a66d38aa22f5ec916f97c29622 (patch) | |
tree | 2f7720162727b111945471613e0b51cf218b8e0d /lib/ext2fs/Makefile.in | |
parent | da76d6b72636d8cec6a582f7552cb7a64f41153a (diff) | |
download | e2fsprogs-8800c738350800a66d38aa22f5ec916f97c29622.tar.gz |
Makefile.in: Fix the kernel compile-time echo commands to be
consistent and portable
Diffstat (limited to 'lib/ext2fs/Makefile.in')
-rw-r--r-- | lib/ext2fs/Makefile.in | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/ext2fs/Makefile.in b/lib/ext2fs/Makefile.in index 931e9b07..75fb344d 100644 --- a/lib/ext2fs/Makefile.in +++ b/lib/ext2fs/Makefile.in @@ -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 |