diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-30 13:32:03 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-30 13:32:03 +0000 |
commit | 4ddde9eea7281ffae3b6ebe6d4dd82ea133a7d29 (patch) | |
tree | 734be11b09cd57026bf8f7a5bc957b6c84f30afd /Makefile | |
parent | 9afc8a596405de12ff3c66e13460b300d95eb74c (diff) | |
download | glibc-4ddde9eea7281ffae3b6ebe6d4dd82ea133a7d29.tar glibc-4ddde9eea7281ffae3b6ebe6d4dd82ea133a7d29.tar.gz glibc-4ddde9eea7281ffae3b6ebe6d4dd82ea133a7d29.tar.bz2 glibc-4ddde9eea7281ffae3b6ebe6d4dd82ea133a7d29.zip |
Update.
1998-03-30 13:28 Ulrich Drepper <drepper@cygnus.com>
* Makefile (parent-mostlyclean): Use object-suffixes-for-libc for
determining libs to remove.
(postclean): Add soversions.mk.
* Makerules (common-mostlyclean): Add tests-static and generated
files.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -261,13 +261,14 @@ $(all-subdirs-targets): # Subroutines of all cleaning targets. parent-mostlyclean: common-mostlyclean # common-mostlyclean is in Makerules. - -rm -f $(foreach o,$(object-suffixes),\ + -rm -f $(foreach o,$(object-suffixes-for-libc),\ $(common-objpfx)$(patsubst %,$(libtype$o),c)) \ $(addprefix $(objpfx),$(install-lib)) parent-clean: parent-mostlyclean common-clean postclean = $(addprefix $(common-objpfx),$(postclean-generated)) \ - $(addprefix $(objpfx),sysd-Makefile sysd-dirs sysd-rules) + $(addprefix $(objpfx),sysd-Makefile sysd-dirs sysd-rules) \ + $(objpfx)soversions.mk clean: parent-clean # This is done this way rather than having `subdir_clean' be a |