diff options
author | Tim Harder <radhermit@gmail.com> | 2017-01-20 16:17:25 -0500 |
---|---|---|
committer | dx <dx@dxzone.com.ar> | 2017-03-12 01:16:58 -0300 |
commit | 65d0dfdefa1e7813a1cb14ce3ae6fae163d4caf5 (patch) | |
tree | 622e38f1b24b735ac314ca4ca9f0c728dbf34b7b /lib | |
parent | 262a82b875f2a05cdcf2258260c5e8a9e538f405 (diff) |
Add --verbose configure option to control verbose build output
Defaults to disabled to maintain the status quo.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 40c03215..b938ca9b 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -35,12 +35,12 @@ distclean: clean $(subdirs) lib.o: $(objects) $(subdirs) @echo '*' Linking lib.o - @$(LD) $(LFLAGS) $(objects) -o lib.o + $(VERBOSE) $(LD) $(LFLAGS) $(objects) -o lib.o $(objects): ../Makefile.settings Makefile $(objects): %.o: $(_SRCDIR_)%.c @echo '*' Compiling $< - @$(CC) -c $(CFLAGS) $(CFLAGS_BITLBEE) $< -o $@ + $(VERBOSE) $(CC) -c $(CFLAGS) $(CFLAGS_BITLBEE) $< -o $@ -include .depend/*.d |