diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | malloc/Makefile | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index bd7524e9cc..ebea24d39d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2000-08-24 Andreas Jaeger <aj@suse.de> + + * malloc/Makefile (extra-objs): Add memusagestat.o. + (generated): Added memusage and memusagestat for make clean. + + * libio/tst_putwc.c (do_test): Delete temporary file. + + * posix/Makefile (generated): Add wordexp-tst.out. + 2000-08-24 Ulrich Drepper <drepper@redhat.com> * resolv/res_hconf.c (free_mem): Remove not needed if. diff --git a/malloc/Makefile b/malloc/Makefile index 07acdcf0f7..25422d22c5 100644 --- a/malloc/Makefile +++ b/malloc/Makefile @@ -48,7 +48,7 @@ libmemusage-routines = memusage libmemusage-inhibit-o = $(filter-out .os,$(object-suffixes)) # These should be removed by `make clean'. -extra-objs = mcheck-init.o libmcheck.a +extra-objs = mcheck-init.o libmcheck.a memusagestat.o # Include the cleanup handler. aux := set-freeres @@ -72,6 +72,7 @@ endif # If the gd library is available we build the `memusagestat' program. ifneq ($(LIBGD),no) install-bin += memusagestat memusage +generated += memusagestat memusage endif # Another goal which can be used to override the configure decision. |