summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorwlemb <wlemb>2000-03-05 18:05:34 +0000
committerwlemb <wlemb>2000-03-05 18:05:34 +0000
commit86b61390948e71e64695eb7cae08771d5622ba55 (patch)
tree814ac19127be38a1c9d90adc2a1725bc8162ce13 /Makefile.in
parent78abfdb9f81632d9667fd243ef80a038342fbabc (diff)
downloadgroff-86b61390948e71e64695eb7cae08771d5622ba55.tar.gz
* src/roff/troff/div.cc (macro_diversion::output,
top_level_diversion::output): Fixing an incompatibility with original troff: x'0' updates the .a register also. Thanks to <Andries.Brouwer@cwi.nl> for pointing this out. * Makefile.in: Create Makefile.dep if necessary before calling the submake process to avoid warning about nonexistent file.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 411d2c0f..968435bb 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -367,6 +367,7 @@ $(LIBDIRS): FORCE
fi; \
test -d $@ || $(mkinstalldirs) $@; \
cd $@; \
+ test -f Makefile.dep || touch Makefile.dep; \
$(MAKE) $(MDEFINES) srcdir=$$srcdir VPATH=$$srcdir \
-f $(top_srcdir)/Makefile.comm \
-f $$srcdir/Makefile.sub \
@@ -380,6 +381,7 @@ $(CPROGDIRS): FORCE
fi; \
test -d $@ || $(mkinstalldirs) $@; \
cd $@; \
+ test -f Makefile.dep || touch Makefile.dep; \
$(MAKE) $(MDEFINES) srcdir=$$srcdir VPATH=$$srcdir \
-f $(top_srcdir)/Makefile.comm \
-f $$srcdir/Makefile.sub \
@@ -393,6 +395,7 @@ $(CCPROGDIRS): FORCE
fi; \
test -d $@ || $(mkinstalldirs) $@; \
cd $@; \
+ test -f Makefile.dep || touch Makefile.dep; \
$(MAKE) $(MDEFINES) srcdir=$$srcdir VPATH=$$srcdir \
-f $(top_srcdir)/Makefile.comm \
-f $$srcdir/Makefile.sub \