diff options
author | Roland McGrath <roland@gnu.org> | 1995-03-21 04:26:12 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-03-21 04:26:12 +0000 |
commit | 6bf028786c61b3b1e98d34557c5c442c2f954526 (patch) | |
tree | 4bd081db788463e1487752e8e742632322864fa0 /Makefile | |
parent | 4788ab4637d4385a7faaf4a1a819f8191bd84127 (diff) | |
download | glibc-6bf028786c61b3b1e98d34557c5c442c2f954526.tar glibc-6bf028786c61b3b1e98d34557c5c442c2f954526.tar.gz glibc-6bf028786c61b3b1e98d34557c5c442c2f954526.tar.bz2 glibc-6bf028786c61b3b1e98d34557c5c442c2f954526.zip |
* Makefile (parent-mostlyclean): Don't use $(libc.a).
(parent-clean): Use $(objpfx) to find sysd-*.
* Rules (generated): Append dummy.o dummy.c.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -171,10 +171,10 @@ $(all-subdirs-targets): # Subroutines of all cleaning targets. parent-mostlyclean: common-mostlyclean # common-mostlyclean is in Makerules. - -rm -f $(libc.a) $(addprefix $(objpfx),$(install-lib)) + -rm -f $(common-objpfx)libc.a $(addprefix $(objpfx),$(install-lib)) parent-clean: parent-mostlyclean common-clean -rm -f $(addprefix $(common-objpfx),$(common-generated)) - -rm -f $(addprefix $(+sysdir_pfx),sysd-Makefile sysd-dirs sysd-rules) + -rm -f $(addprefix $(objpfx),sysd-Makefile sysd-dirs sysd-rules) clean: parent-clean # This is done this way rather than having `subdir_clean' be a |