diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-17 12:09:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-17 12:09:52 +0000 |
commit | b5db14a3fb9fbcd780b4fcb05c2298c8bbef0a54 (patch) | |
tree | adf9bd00191cbaf785782586a22989a46c17cd23 /Makerules | |
parent | 695fcdc1547838816ccf421cc85f0d5014c94a7b (diff) |
combine the output rules in one place
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -31,13 +31,20 @@ all_objs: $(ar_objs) endif headers-y: $(headers-y) + @true MAKEFLAGS += --no-print-directory +SHELL_SET_X := set +x ifneq ($(findstring s,$(MAKEFLAGS)),) +export MAKE_IS_SILENT := y +SECHO := -@false DISP := sil Q := @ else +export MAKE_IS_SILENT := n +SECHO := @echo ifneq ($(V)$(VERBOSE),) +SHELL_SET_X := set -x DISP := ver Q := else |