diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-10-02 07:30:48 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-10-02 07:30:48 +0000 |
commit | 4c53d2217ea26aafd7b456a7a343b98b7113a71f (patch) | |
tree | a122366b8eae047ed4e35c3315496fe6d80c1bfa /Make-dist | |
parent | aa298c0874c545acf0fc40f8d544cb96f0270990 (diff) | |
download | glibc-4c53d2217ea26aafd7b456a7a343b98b7113a71f.tar glibc-4c53d2217ea26aafd7b456a7a343b98b7113a71f.tar.gz glibc-4c53d2217ea26aafd7b456a7a343b98b7113a71f.tar.bz2 glibc-4c53d2217ea26aafd7b456a7a343b98b7113a71f.zip |
Update.
2002-10-02 Ulrich Drepper <drepper@redhat.com>
* version.h (VERSION): Bump to 2.3.
* elf/Makefile (distribute): Add tst-tlsmod1.c, tst-tlsmod2.c,
tst-tlsmod3.c, tst-tlsmod4.c, circlemod1.c, circlemod1a.c,
circlemod2.c, circlemod2a.c, circlemod3.c, circlemod3a.c,
and nodlopenmod2.c.
* login/Makefile (distribute): Add utmp-equal.h.
* iconvdata/Makefile (distribute): Add TSCII.precomposed and
TSCII.irreversible.
* Make-dist (dist): Create .bz2 file. Add rule to create .bz2
files.
Also distribute xtests sources.
2002-10-02 Kaz Kojima <kkojima@rr.iij4u.or.jp>
* elf/elf.h: Change TLS ELF relocation numbers.
* elf/tls-macros.h: Fix code sequences for SH TLS_LD and TLS_GD
macros.
* sysdeps/sh/dl-machine.h (dl_machine_rela) [case R_SH_TLS_TPOFF32]:
Use addend.
* sysdeps/sh/elf/initfini.c: Move __fpscr_values to...
* sysdeps/sh/elf/start.S: ...here.
Diffstat (limited to 'Make-dist')
-rw-r--r-- | Make-dist | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -82,7 +82,8 @@ foo:=$(shell echo 'IS THIS WORKING??? all-headers=$(all-headers)' >&2) sources += $(addsuffix .c,$(elided-routines) \ $(foreach l,$(extra-libs),$($l-routines))) -sources += $(addsuffix .c, $(filter-out $(elided-routines), $(tests))) +sources += $(addsuffix .c, $(filter-out $(elided-routines), \ + $(tests) $(xtests))) # Find all sysdep sources and headers. +maybe-sysdeps := $(sources) $(sources:.c=.s) $(sources:.c=.S) $(all-headers) \ @@ -153,7 +154,7 @@ foo:=$(shell echo subdir foo >&2) +tsrcs := Makefile $(wildcard Versions) $(wildcard Depend) $(+tsrcs) \ $(addsuffix .c,$(others) $(test-srcs)) \ - $(wildcard $(addsuffix .input,$(tests) $(test-srcs))) + $(wildcard $(addsuffix .input,$(tests) $(xtests) $(test-srcs))) +tardeps := $(strip $(+tsrcs)) verbose = v @@ -205,7 +206,7 @@ endif configure: configure.in aclocal.m4; $(autoconf-it) %/configure: %/configure.in aclocal.m4; $(autoconf-it) -dist: $(tardir).tar.gz +dist: $(tardir).tar.bz2 subdir_dist: dist.tar dist.tar: README $(tardir) $(+tsrcs) @@ -223,6 +224,9 @@ $(tardir).tar: dist.tar subdir_dist %.gz: % gzip -9 -v -c $< > $@ +%.bz2: % + bzip2 -9 -v -c $< > $@ + foo:=$(shell echo subdirs=$(subdirs) >&2) dist-subdirs := $(addprefix dist-,$(subdirs)) # dist-manual .PHONY: subdir_dist $(dist-subdirs) |