(dist): Implement. The client tarball doesn't work yet.

(TARNAME, VERSION, tarball, acdist, src_distgen, bld_distgen)
(dist-source, dist-client, dist-info, check-version): New.
This commit is contained in:
Markus Armbruster 2006-01-15 20:10:27 +00:00
parent f237a5e278
commit 1991652cfd
3 changed files with 61 additions and 2 deletions

View file

@ -34,6 +34,9 @@
# The real meat is in Make.mk, which see. # The real meat is in Make.mk, which see.
TARNAME := @PACKAGE_TARNAME@
VERSION := @PACKAGE_VERSION@
CC := @CC@ CC := @CC@
have_gcc := @GCC@ have_gcc := @GCC@
CFLAGS := @CFLAGS@ CFLAGS := @CFLAGS@

32
Make.mk
View file

@ -63,10 +63,13 @@ subjects.html := $(addprefix info.html/, $(addsuffix .html, $(subjects)))
topics.html := $(addprefix info.html/, $(addsuffix .html, $(topics))) topics.html := $(addprefix info.html/, $(addsuffix .html, $(topics)))
scripts = $(srcdir)/src/scripts scripts = $(srcdir)/src/scripts
depcomp = $(SHELL) $(srcdir)/depcomp depcomp = $(SHELL) $(srcdir)/depcomp
tarball = $(SHELL) $(scripts)/tarball
econfig := $(sysconfdir)/empire/econfig econfig := $(sysconfdir)/empire/econfig
edatadir := $(localstatedir)/empire edatadir := $(localstatedir)/empire
einfodir := $(datadir)/empire/info.nr einfodir := $(datadir)/empire/info.nr
ehtmldir := $(datadir)/empire/info.html ehtmldir := $(datadir)/empire/info.html
# How to substitute Autoconf output variables
# Recursively expanded so that $@ and $< work. # Recursively expanded so that $@ and $< work.
subst.in = sed \ subst.in = sed \
-e 's?@configure_input\@?$(notdir $@). Generated from $(notdir $<) by GNUmakefile.?g' \ -e 's?@configure_input\@?$(notdir $@). Generated from $(notdir $<) by GNUmakefile.?g' \
@ -77,9 +80,11 @@ subst.in = sed \
-e 's/@EMPIREPORT\@/$(EMPIREPORT)/g' -e 's/@EMPIREPORT\@/$(EMPIREPORT)/g'
# Generated files # Generated files
# See `Cleanliness' below
mk := sources.mk subjects.mk mk := sources.mk subjects.mk
ac := $(srcdir)/autom4te.cache config.h config.log config.status \ ac := $(srcdir)/autom4te.cache config.h config.log config.status \
stamp-h $(basename $(filter %.in, $(src))) stamp-h $(basename $(filter %.in, $(src)))
acdist := aclocal.m4 config.h.in configure stamp-h.in
obj := $(csrc:.c=.o) $(filter %.o, $(ac:.c=.o)) obj := $(csrc:.c=.o) $(filter %.o, $(ac:.c=.o))
# TODO AIX needs lwpInit.o lwpRestore.o lwpSave.o unless UCONTEXT # TODO AIX needs lwpInit.o lwpRestore.o lwpSave.o unless UCONTEXT
deps := $(obj:.o=.d) deps := $(obj:.o=.d)
@ -105,11 +110,17 @@ empth_obj := src/lib/empthread/ntthread.o
empth_lib := empth_lib :=
endif endif
# Cleanliness
# Each generated file should be in one of the following sets.
# Removed by clean: # Removed by clean:
clean := $(obj) $(deps) $(libs) $(util) $(client) $(server) $(tsubj) \ clean := $(obj) $(deps) $(libs) $(util) $(client) $(server) $(tsubj) \
$(ttop) $(info.nr) $(info.html) $(empth_obj) $(empth_lib) $(ttop) $(info.nr) $(info.html) $(empth_obj) $(empth_lib)
# Removed by distclean: # Removed by distclean:
distclean := $(ac) distclean := $(ac)
# Distributed by dist from $(srcdir)
src_distgen := $(acdist)
# Distributed by dist from .
bld_distgen := $(mk)
# Compiler flags # Compiler flags
CPPFLAGS += -I$(srcdir)/include -I. CPPFLAGS += -I$(srcdir)/include -I.
@ -171,8 +182,7 @@ uninstall:
false # FIXME false # FIXME
.PHONY: dist .PHONY: dist
dist: dist: dist-source dist-client dist-info
false # FIXME
### Implicit rules ### Implicit rules
@ -254,6 +264,24 @@ sources.mk: $(scripts)/cvsfiles.awk $(addprefix $(srcdir)/, $(addsuffix CVS/Entr
echo 'src := ' `cd $(srcdir) && $(AWK) -f src/scripts/cvsfiles.awk` >$@ echo 'src := ' `cd $(srcdir) && $(AWK) -f src/scripts/cvsfiles.awk` >$@
endif endif
.PHONY: dist-source
dist-source: check-version
$(tarball) $(TARNAME)-$(VERSION) $(bld_distgen) -C $(srcdir) $(src_distgen) $(src)
.PHONY: dist-client
dist-client:
$(tarball) $(TARNAME)-client-$(VERSION) -C $(srcdir) $(filter src/client/%, $(src))
.PHONY: dist-info
dist-info: info html
$(tarball) $(TARNAME)-info-text-$(VERSION) -C info.nr $(info)
$(tarball) $(TARNAME)-info-html-$(VERSION) -C info.html $(addsuffix .html, $(info))
check-version:
if [ $(VERSION) != `sed -n '/EMP_VERS_/s/#define EMP_VERS_\([A-Z]*\)[ \t]*//p' <include/version.h | tr '\012' . | sed 's/\.$$//'` ]; \
then echo version.h does not match configure.ac >&2; false; \
fi
ifneq ($(deps),) ifneq ($(deps),)
-include $(deps) -include $(deps)
endif endif

28
src/scripts/tarball Executable file
View file

@ -0,0 +1,28 @@
#!/bin/sh -e
if [ $# = 0 ]; then
echo "Usage: $0 NAME (FILE | -C DIR)..."
exit 1
fi
name=$1; shift
# arrange cleanup
trap 'rm -rf "$name"' 0
mkdir -p $name
dir=.
until [ $# = 0 ]; do
if [ "$1" = -C ]; then
dir="$2"
if shift 2; then continue; fi
echo "-C requires an argument" >&2
exit 1
fi
mkdir -p `dirname "$name/$1"`
ln "$dir/$1" "$name/$1"
shift
done
tar -czf $name.tar.gz --owner=0 --group=0 --mode=ug+w,a+rX $name