From: Christian Bauer Date: Mon, 7 Feb 2000 19:47:35 +0000 (+0000) Subject: - cint dir was missing from distribution X-Git-Tag: release_0-5-0~4 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=9d22692238af9dd0875b5ed849e6ce3a3d503a87 - cint dir was missing from distribution --- diff --git a/Makefile.am b/Makefile.am index 6470f546..08a6da95 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,6 @@ ## Process this file with automake to produce Makefile.in SUBDIRS = @GINACCINTDIR@ ginac check ginsh tools doc +DIST_SUBDIRS = cint ginac check ginsh tools doc # Requires automake 1.4 AUTOMAKE_OPTIONS = 1.4 diff --git a/Makefile.in b/Makefile.in index 3f48f733..6dae8385 100644 --- a/Makefile.in +++ b/Makefile.in @@ -103,6 +103,7 @@ VERSION = @VERSION@ YACC = @YACC@ SUBDIRS = @GINACCINTDIR@ ginac check ginsh tools doc +DIST_SUBDIRS = cint ginac check ginsh tools doc # Requires automake 1.4 AUTOMAKE_OPTIONS = 1.4 @@ -357,14 +358,14 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ || cp -p $$d/$$file $(distdir)/$$file || :; \ fi; \ done - for subdir in $(SUBDIRS); do \ + for subdir in $(DIST_SUBDIRS); do \ if test "$$subdir" = .; then :; else \ test -d $(distdir)/$$subdir \ || mkdir $(distdir)/$$subdir \ diff --git a/check/Makefile.in b/check/Makefile.in index 0a17c446..e4a4f5d8 100644 --- a/check/Makefile.in +++ b/check/Makefile.in @@ -252,7 +252,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ diff --git a/cint/Makefile.am b/cint/Makefile.am index ce243d36..f1b66f1a 100644 --- a/cint/Makefile.am +++ b/cint/Makefile.am @@ -4,6 +4,7 @@ bin_PROGRAMS = ginaccint.bin bin_SCRIPTS = ginaccint noinst_LTLIBRARIES = libginac.la ginaccint_bin_SOURCES = ginaccint.bin.cpp dummies.cpp dummies.h +libginac_la_SOURCES = man_MANS = ginaccint.1 # Build a modified library in the ginac-subdir and put it into the cint-subdir: @@ -17,7 +18,7 @@ libginac.la: ginaccint.bin: libginac.la ginaccint.bin.cpp (export CINTSYSDIR=$(CINTSYSDIR); $(MAKE) -f Makefile.makecint PATH=$(PATH):$(CINTSYSDIR)) -EXTRA_DIST = dummies.pl +EXTRA_DIST = $(man_MANS) dummies.pl # Files which are generated by perl scripts $(srcdir)/dummies.h $(srcdir)/dummies.cpp: $(srcdir)/dummies.pl diff --git a/cint/Makefile.in b/cint/Makefile.in index cf069ba5..6ba3fc82 100644 --- a/cint/Makefile.in +++ b/cint/Makefile.in @@ -106,9 +106,10 @@ bin_PROGRAMS = ginaccint.bin bin_SCRIPTS = ginaccint noinst_LTLIBRARIES = libginac.la ginaccint_bin_SOURCES = ginaccint.bin.cpp dummies.cpp dummies.h +libginac_la_SOURCES = man_MANS = ginaccint.1 -EXTRA_DIST = dummies.pl +EXTRA_DIST = $(man_MANS) dummies.pl mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../config.h CONFIG_CLEAN_FILES = ginaccint @@ -121,8 +122,7 @@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ libginac_la_LDFLAGS = libginac_la_LIBADD = -libginac_la_SOURCES = libginac.la.c -libginac_la_OBJECTS = libginac.la.lo +libginac_la_OBJECTS = PROGRAMS = $(bin_PROGRAMS) ginaccint_bin_OBJECTS = ginaccint.bin.o dummies.o @@ -152,9 +152,9 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) TAR = tar GZIP_ENV = --best -DEP_FILES = .deps/dummies.P .deps/ginaccint.bin.P .deps/libginac.la.P -SOURCES = libginac.la.c $(ginaccint_bin_SOURCES) -OBJECTS = libginac.la.lo $(ginaccint_bin_OBJECTS) +DEP_FILES = .deps/dummies.P .deps/ginaccint.bin.P +SOURCES = $(libginac_la_SOURCES) $(ginaccint_bin_SOURCES) +OBJECTS = $(libginac_la_OBJECTS) $(ginaccint_bin_OBJECTS) all: all-redirect .SUFFIXES: @@ -339,7 +339,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ diff --git a/doc/Makefile.in b/doc/Makefile.in index e153dbe7..074ed710 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -272,7 +272,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ diff --git a/doc/reference/Makefile.in b/doc/reference/Makefile.in index 3ed3518b..a150803c 100644 --- a/doc/reference/Makefile.in +++ b/doc/reference/Makefile.in @@ -168,7 +168,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ diff --git a/doc/tutorial/Makefile.in b/doc/tutorial/Makefile.in index 0964c1aa..7b0a861e 100644 --- a/doc/tutorial/Makefile.in +++ b/doc/tutorial/Makefile.in @@ -325,7 +325,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ diff --git a/doc/tutorial/stamp-vti b/doc/tutorial/stamp-vti index 10c9ec16..942d03bf 100644 --- a/doc/tutorial/stamp-vti +++ b/doc/tutorial/stamp-vti @@ -1,3 +1,3 @@ -@set UPDATED 21 January 2000 -@set EDITION 0.4.1 -@set VERSION 0.4.1 +@set UPDATED 7 February 2000 +@set EDITION 0.5.0 +@set VERSION 0.5.0 diff --git a/doc/tutorial/version.texi b/doc/tutorial/version.texi index f07101f1..942d03bf 100644 --- a/doc/tutorial/version.texi +++ b/doc/tutorial/version.texi @@ -1,3 +1,3 @@ -@set UPDATED 29 January 2000 +@set UPDATED 7 February 2000 @set EDITION 0.5.0 @set VERSION 0.5.0 diff --git a/ginac/Makefile.in b/ginac/Makefile.in index a5be0fed..1ec4f0d0 100644 --- a/ginac/Makefile.in +++ b/ginac/Makefile.in @@ -293,7 +293,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ diff --git a/ginsh/Makefile.in b/ginsh/Makefile.in index 52d94022..93b0b6ff 100644 --- a/ginsh/Makefile.in +++ b/ginsh/Makefile.in @@ -315,7 +315,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ diff --git a/tools/Makefile.in b/tools/Makefile.in index 13f92f31..0c816330 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -298,7 +298,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \