diff options
| author | Richard M. Stallman | 1995-05-04 21:55:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-05-04 21:55:08 +0000 |
| commit | 633796fee369cbbcb45246a30580b238b4eba91d (patch) | |
| tree | f0c6db91edf5de65ade00aeb61e297792240d71b /src | |
| parent | 5260234d4309ff40f02424a3266226cfeeebe8bf (diff) | |
| download | emacs-633796fee369cbbcb45246a30580b238b4eba91d.tar.gz emacs-633796fee369cbbcb45246a30580b238b4eba91d.zip | |
(${etc}DOC): Put SOME_MACHINE_OBJECTS before obj.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index bd67535f43b..22422ed1453 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -667,9 +667,14 @@ emacs: temacs ${etc}DOC ${lisp} | |||
| 667 | 667 | ||
| 668 | /* We run make-docfile twice because the command line may get too long | 668 | /* We run make-docfile twice because the command line may get too long |
| 669 | on some systems. */ | 669 | on some systems. */ |
| 670 | /* ${SOME_MACHINE_OBJECTS} comes before ${obj} because some files may | ||
| 671 | or may not be included in ${obj}, but they are always included in | ||
| 672 | ${SOME_MACHINE_OBJECTS}. Since a file is processed when it is mentioned | ||
| 673 | for the first time, this prevents any variation between configurations | ||
| 674 | in the contents of the DOC file. */ | ||
| 670 | ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp} | 675 | ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp} |
| 671 | -rm -f ${etc}DOC | 676 | -rm -f ${etc}DOC |
| 672 | ${libsrc}make-docfile -d ${srcdir} ${obj} ${SOME_MACHINE_OBJECTS} > ${etc}DOC | 677 | ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC |
| 673 | ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${lisp} | 678 | ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${lisp} |
| 674 | 679 | ||
| 675 | ${libsrc}make-docfile: | 680 | ${libsrc}make-docfile: |