diff options
author | dequis <dx@dxzone.com.ar> | 2017-04-06 17:29:23 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2017-04-06 17:29:23 -0300 |
commit | 051506399e1455d88f6179010129308c754be936 (patch) | |
tree | 859329ebf6c7f662596a2cd85981b454ba1a1a6b /lib | |
parent | b0979452e9d42896b8f6fdc0da76dc0c79651b62 (diff) | |
parent | c9e9c9c501d1609c3dd5f95a25efa60c4f1be384 (diff) |
Merge branch 'develop'
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 05aaca7f..fc46aedc 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 |