diff options
author | Emese Revfy <re.emese@gmail.com> | 2016-05-24 00:08:25 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2016-06-07 22:57:10 +0200 |
commit | 24403874316a7180d367e51d7f7e25d5de1f78dd (patch) | |
tree | af73e52ba1709a6ff79977f363b0d481825c1885 /scripts/Makefile.clean | |
parent | 1a695a905c18548062509178b98bc91e67510864 (diff) | |
download | linux-stable-24403874316a7180d367e51d7f7e25d5de1f78dd.tar.gz linux-stable-24403874316a7180d367e51d7f7e25d5de1f78dd.tar.bz2 linux-stable-24403874316a7180d367e51d7f7e25d5de1f78dd.zip |
Shared library support
Infrastructure for building independent shared library targets.
Based on work created by the PaX Team.
Signed-off-by: Emese Revfy <re.emese@gmail.com>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'scripts/Makefile.clean')
-rw-r--r-- | scripts/Makefile.clean | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean index 55c96cb8070f..50616ea25131 100644 --- a/scripts/Makefile.clean +++ b/scripts/Makefile.clean @@ -38,7 +38,9 @@ subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn)) __clean-files := $(extra-y) $(extra-m) $(extra-) \ $(always) $(targets) $(clean-files) \ $(host-progs) \ - $(hostprogs-y) $(hostprogs-m) $(hostprogs-) + $(hostprogs-y) $(hostprogs-m) $(hostprogs-) \ + $(hostlibs-y) $(hostlibs-m) $(hostlibs-) \ + $(hostcxxlibs-y) $(hostcxxlibs-m) __clean-files := $(filter-out $(no-clean-files), $(__clean-files)) |