diff options
author | David Ahern <dsa@cumulusnetworks.com> | 2016-05-24 15:04:49 -0700 |
---|---|---|
committer | Stephen Hemminger <shemming@brocade.com> | 2016-05-31 12:13:07 -0700 |
commit | 57bdf8b76451db9de7a9becf32a8ec1c101fa294 (patch) | |
tree | 3b3dcfb454663dc42040de7cf2e7c216aa37e619 /tipc | |
parent | e70b9f16ea5d461729e87e2b1ca927749bfb4f87 (diff) |
Make builds default to quiet mode
Similar to the Linux kernel and perf add infrastructure to reduce the
amount of output tossed to a user during a build. Full build output
can be obtained with 'make V=1'
Builds go from:
make[1]: Leaving directory `/home/dsa/iproute2.git/lib'
make[1]: Entering directory `/home/dsa/iproute2.git/ip'
gcc -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wold-style-definition -Wformat=2 -O2 -I../include -DRESOLVE_HOSTNAMES -DLIBDIR=\"/usr/lib\" -DCONFDIR=\"/etc/iproute2\" -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -c -o ip.o ip.c
gcc -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wold-style-definition -Wformat=2 -O2 -I../include -DRESOLVE_HOSTNAMES -DLIBDIR=\"/usr/lib\" -DCONFDIR=\"/etc/iproute2\" -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -c -o ipaddress.o ipaddress.c
to:
...
AR libutil.a
ip
CC ip.o
CC ipaddress.o
...
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
Diffstat (limited to 'tipc')
-rw-r--r-- | tipc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tipc/Makefile b/tipc/Makefile index bc5ecfd3..868d13ab 100644 --- a/tipc/Makefile +++ b/tipc/Makefile @@ -19,6 +19,7 @@ endif all: $(TARGETS) $(LIBS) tipc: $(TIPCOBJ) + $(QUIET_LINK)$(CC) $^ $(LDFLAGS) $(LDLIBS) -o $@ install: all install -m 0755 $(TARGETS) $(DESTDIR)$(SBINDIR) |