mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
2004-07-07 Roland McGrath <roland@frob.com>
* Makefile (dist-separate): New variable. (glibc-%.tar rule): Make separate tar files for add-ons listed there. Depend on their configure files. (dist-do-separate-dirs): New canned sequence to do that. (dist-separate-libidn, dist-separate-linuxthreads): New variables. (dist): Depend on add-on tar files based on $(dist-separate). (dist-version): New variable, default to $(version). (tag-for-dist, dist): Use that in place of $(version) in deps.
This commit is contained in:
parent
8e5aaad9da
commit
7c0cf35643
31
Makefile
31
Makefile
@ -277,23 +277,40 @@ files-for-dist := README FAQ INSTALL NOTES configure
|
||||
|
||||
tag-of-stem = glibc-$(subst .,_,$*)
|
||||
|
||||
glibc-%.tar glibc-linuxthreads-%.tar: $(files-for-dist)
|
||||
# Add-ons in the main repository but distributed in their own tar files.
|
||||
dist-separate = libidn linuxthreads
|
||||
|
||||
# Directories in each add-on.
|
||||
dist-separate-libidn = libidn
|
||||
dist-separate-linuxthreads = linuxthreads linuxthreads_db
|
||||
|
||||
glibc-%.tar $(dist-separate:%=glibc-%-%.tar): $(files-for-dist) \
|
||||
$(foreach D,$(dist-separate),\
|
||||
$D/configure)
|
||||
@rm -fr glibc-$*
|
||||
cvs $(CVSOPTS) -Q export -d glibc-$* -r $(tag-of-stem) libc
|
||||
tar cf glibc-linuxthreads-$*.tar -C glibc-$* \
|
||||
linuxthreads linuxthreads_db
|
||||
rm -rf $(addprefix glibc-$*/,linuxthreads linuxthreads_db)
|
||||
$(dist-do-separate-dirs)
|
||||
tar cf glibc-$*.tar glibc-$*
|
||||
rm -fr glibc-$*
|
||||
define dist-do-separate-dirs
|
||||
$(foreach dir,$(dist-separate),
|
||||
tar cf glibc-$(dir)-$*.tar -C glibc-$* $(dist-separate-$(dir))
|
||||
rm -rf $(addprefix glibc-$*/,$(dist-separate-$(dir)))
|
||||
)
|
||||
endef
|
||||
|
||||
%.bz2: %; bzip2 -9vk $<
|
||||
%.gz: %; gzip -9vnc $< > $@.new && mv -f $@.new $@
|
||||
|
||||
dist: $(foreach Z,.bz2 .gz,glibc-$(version).tar$Z \
|
||||
glibc-linuxthreads-$(version).tar$Z)
|
||||
# Do `make dist dist-version=X.Y.Z' to make tar files of an older version.
|
||||
dist-version = $(version)
|
||||
|
||||
dist: $(foreach Z,.bz2 .gz,glibc-$(dist-version).tar$Z \
|
||||
$(foreach D,$(dist-separate),\
|
||||
glibc-$D-$(dist-version).tar$Z))
|
||||
md5sum $^
|
||||
|
||||
tag-for-dist: tag-$(version)
|
||||
tag-for-dist: tag-$(dist-version)
|
||||
tag-%: $(files-for-dist)
|
||||
cvs $(CVSOPTS) -Q tag -c $(tag-of-stem)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user