diff options
author | Roland McGrath <roland@gnu.org> | 1996-06-05 19:07:37 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-06-05 19:07:37 +0000 |
commit | aa592a63f9c6541bc4661eed409b89248a58f311 (patch) | |
tree | d61f7dfaf21beb67509cb5a4fbd3300b2f7708a5 /Make-dist | |
parent | 198046e105783f200a3512c2fcb986570f81b0a0 (diff) | |
download | glibc-aa592a63f9c6541bc4661eed409b89248a58f311.tar glibc-aa592a63f9c6541bc4661eed409b89248a58f311.tar.gz glibc-aa592a63f9c6541bc4661eed409b89248a58f311.tar.bz2 glibc-aa592a63f9c6541bc4661eed409b89248a58f311.zip |
* Makerules (distinfo-vars): Add sysdep_routines.
* mach/Machrules (include-%.defs): New canned sequence.
Change all uses of `#include <$*.defs>' in cmds to use it.
* mach/Makefile (mach_interface.defs): New variable, set to mach.defs.
* sysdeps/i386/dl-machine.h (elf_machine_rel): Handle RESOLVE being
null in all cases but R_386_COPY.
(elf_machine_rel):
* sysdeps/unix/bsd/ultrix4/mips/Dist: Updated.
* sysdeps/unix/bsd/ultrix4/Dist: Removed.
* sysdeps/unix/sysv/sysv4/Dist: Updated.
* sysdeps/unix/sysv/sco3.2.4/Dist: Removed.
* sysdeps/unix/sysv/irix4/Dist: Updated.
* sysdeps/unix/sysv/linux/i386/Dist: Removed.
* sysdeps/unix/sysv/Dist: Updated.
* sysdeps/unix/bsd/sun/sunos4/Dist: Removed.
* sysdeps/unix/bsd/sony/newsos4/Dist: Removed.
* sysdeps/gnu/Dist: New file.
* sysdeps/alpha/Dist: Updated.
* sysdeps/mach/hurd/Dist: Updated.
* Make-dist [subdir-dirs]: Set a vpath for %.c.
* Make-dist (README): Fix typo in cvs cmd.
Diffstat (limited to 'Make-dist')
-rw-r--r-- | Make-dist | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -75,6 +75,10 @@ foo:=$(shell echo 'stub/generic +sysdeps=$(+sysdeps)'>&2) +sysdep-names := $(sort $(notdir $(+sysdeps))) foo:=$(shell echo '+sysdep-names=$(+sysdep-names)' >&2) +ifdef subdir-dirs +vpath %.c $(addprefix $(subdir)/,$(subdir-dirs)) +endif + # Now find all the sysdep versions of those files. +sysdeps := $(wildcard $(foreach dir,$(sysdep_dirs) $(source_dirs),\ $(addprefix $(dir)/, \ @@ -206,7 +210,7 @@ README: README.template version.c sed -e 's/RELEASE/$(release)/' -e 's/VERSION/$(version)/' < $< > $@ # Make it unwritable so I won't change it by mistake. chmod 444 $@ - test ! -d CVS || commit -m'Remade for $(release)-$(version)' $@ + test ! -d CVS || cvs commit -m'Remade for $(release)-$(version)' $@ endif # Subdirectory vs. parent makefile |