Avoid messed up output because of trailing spaces

This commit is contained in:
sin 2014-11-17 13:22:10 +00:00
parent ba89dc565f
commit a84cbe9e1c

218
Makefile
View File

@ -3,122 +3,122 @@ include config.mk
.POSIX: .POSIX:
.SUFFIXES: .c .o .SUFFIXES: .c .o
HDR = \ HDR =\
arg.h \ arg.h\
crypt.h \ crypt.h\
fs.h \ fs.h\
md5.h \ md5.h\
queue.h \ queue.h\
sha1.h \ sha1.h\
sha256.h \ sha256.h\
sha512.h \ sha512.h\
text.h \ text.h\
util.h util.h
LIB = libutil.a LIB = libutil.a
LIBSRC = \ LIBSRC =\
util/agetcwd.c \ util/agetcwd.c\
util/agetline.c \ util/agetline.c\
util/apathmax.c \ util/apathmax.c\
util/concat.c \ util/concat.c\
util/cp.c \ util/cp.c\
util/crypt.c \ util/crypt.c\
util/ealloc.c \ util/ealloc.c\
util/enmasse.c \ util/enmasse.c\
util/eprintf.c \ util/eprintf.c\
util/eregcomp.c \ util/eregcomp.c\
util/estrtod.c \ util/estrtod.c\
util/estrtol.c \ util/estrtol.c\
util/fnck.c \ util/fnck.c\
util/getlines.c \ util/getlines.c\
util/human.c \ util/human.c\
util/md5.c \ util/md5.c\
util/mode.c \ util/mode.c\
util/putword.c \ util/putword.c\
util/recurse.c \ util/recurse.c\
util/rm.c \ util/rm.c\
util/sha1.c \ util/sha1.c\
util/sha256.c \ util/sha256.c\
util/sha512.c \ util/sha512.c\
util/strlcat.c \ util/strlcat.c\
util/strlcpy.c util/strlcpy.c
BIN = \ BIN =\
basename \ basename\
cal \ cal\
cat \ cat\
chgrp \ chgrp\
chmod \ chmod\
chown \ chown\
chroot \ chroot\
cksum \ cksum\
cmp \ cmp\
col \ col\
cols \ cols\
comm \ comm\
cp \ cp\
csplit \ csplit\
cut \ cut\
date \ date\
dirname \ dirname\
du \ du\
echo \ echo\
env \ env\
expand \ expand\
expr \ expr\
false \ false\
fold \ fold\
grep \ grep\
head \ head\
hostname \ hostname\
kill \ kill\
link \ link\
ln \ ln\
logname \ logname\
ls \ ls\
md5sum \ md5sum\
mkdir \ mkdir\
mkfifo \ mkfifo\
mktemp \ mktemp\
mv \ mv\
nice \ nice\
nl \ nl\
nohup \ nohup\
paste \ paste\
printenv \ printenv\
printf \ printf\
pwd \ pwd\
readlink \ readlink\
renice \ renice\
rm \ rm\
rmdir \ rmdir\
sleep \ sleep\
setsid \ setsid\
sort \ sort\
split \ split\
sponge \ sponge\
strings \ strings\
sync \ sync\
tail \ tail\
tar \ tar\
tee \ tee\
test \ test\
touch \ touch\
tr \ tr\
true \ true\
tty \ tty\
uudecode \ uudecode\
uuencode \ uuencode\
uname \ uname\
unexpand \ unexpand\
uniq \ uniq\
unlink \ unlink\
seq \ seq\
sha1sum \ sha1sum\
sha256sum\ sha256sum\
sha512sum\ sha512sum\
wc \ wc\
xargs \ xargs\
yes yes
LIBOBJ = $(LIBSRC:.c=.o) LIBOBJ = $(LIBSRC:.c=.o)