diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Makeconfig | 2 | ||||
-rw-r--r-- | Makefile | 9 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | conform/Makefile | 2 |
5 files changed, 19 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index 6cd528ebea..0a0dfbdf9b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2000-08-02 Ulrich Drepper <drepper@redhat.com> + * Makeconfig (all-subdirs): Add conform. + * conform/Makefile: Include ../Rules. + + * Makefile (README): Add rules to generate here as well. + +2000-08-02 Ulrich Drepper <drepper@redhat.com> + * version.h (VERSION): Bump to 2.1.92. * sysdeps/ia64/Dist: Add _mcount.S. diff --git a/Makeconfig b/Makeconfig index 40404a5d1f..5064152366 100644 --- a/Makeconfig +++ b/Makeconfig @@ -818,7 +818,7 @@ all-subdirs = csu assert ctype locale intl catgets math setjmp signal \ stdlib stdio-common $(stdio) malloc string wcsmbs time dirent \ grp pwd posix io termios resource misc socket sysvipc gmon \ gnulib iconv iconvdata wctype manual shadow po argp \ - crypt $(add-ons) nss localedata timezone rt debug \ + crypt $(add-ons) nss localedata timezone rt conform debug \ $(sysdep-subdirs) $(dlfcn) $(binfmt-subdir) all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs)) diff --git a/Makefile b/Makefile index ddb682d69f..6da6df0dde 100644 --- a/Makefile +++ b/Makefile @@ -272,7 +272,14 @@ distribute := README README.libm INSTALL FAQ FAQ.in NOTES NEWS BUGS \ distribute := $(strip $(distribute)) generated := $(generated) stubs.h -README: README.template version.h ; # Make-dist should update README. +README: README.template version.h + -rm -f $@ + sed -e 's/RELEASE/$(release)/' -e 's/VERSION/$(version)/' < $< > $@ +# Make it unwritable so I won't change it by mistake. + chmod 444 $@ +ifeq ($(with-cvs),yes) + test ! -d CVS || cvs $(CVSOPTS) commit -m'Remade for $(release)-$(version)' $@ +endif define format-me @rm -f $@ diff --git a/README b/README index ec6464abb7..1b9836f9d9 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -This directory contains the version 2.1.91 release of the GNU C Library. +This directory contains the version 2.1.92 release of the GNU C Library. Many bugs have been fixed since the last release. Some bugs surely remain. diff --git a/conform/Makefile b/conform/Makefile index af8f2a033a..0104e37d98 100644 --- a/conform/Makefile +++ b/conform/Makefile @@ -23,3 +23,5 @@ subdir := conform distribute = conformtest.pl $(wildcard data/*.h-data) \ $(wildcard data/*/*.h-data) + +include ../Rules |