diff options
| author | Eli Zaretskii | 2011-02-19 18:53:10 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2011-02-19 18:53:10 +0200 |
| commit | 219463da10f01fece14351d6ccecccb43a27885f (patch) | |
| tree | a8ab269c1b011d47de6bfb79df08d59e0e97e816 /msdos | |
| parent | 152be435b98c485f75160e86f67d250122b7e1bd (diff) | |
| download | emacs-219463da10f01fece14351d6ccecccb43a27885f.tar.gz emacs-219463da10f01fece14351d6ccecccb43a27885f.zip | |
Fix generation of auto-dependency files in lib/.
.bzrignore: Add lib/deps/.
config.bat: Generate *.Po files in lib/deps.
msdos/sedlibmk.inp (CONFIG_CLEAN_VPATH_FILES): Fix editing of *-clean
rules.
msdos/depfiles.bat: New file.
Diffstat (limited to 'msdos')
| -rw-r--r-- | msdos/ChangeLog | 5 | ||||
| -rw-r--r-- | msdos/depfiles.bat | 25 | ||||
| -rw-r--r-- | msdos/sedlibmk.inp | 2 |
3 files changed, 31 insertions, 1 deletions
diff --git a/msdos/ChangeLog b/msdos/ChangeLog index 9a98352ff23..7a4d107eebe 100644 --- a/msdos/ChangeLog +++ b/msdos/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2011-02-19 Eli Zaretskii <eliz@gnu.org> | 1 | 2011-02-19 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * sedlibmk.inp (CONFIG_CLEAN_VPATH_FILES): Fix editing of *-clean | ||
| 4 | rules. | ||
| 5 | |||
| 6 | * depfiles.bat: New file. | ||
| 7 | |||
| 3 | * sedlibmk.inp: New file. | 8 | * sedlibmk.inp: New file. |
| 4 | 9 | ||
| 5 | * sedlibcf.inp: New file. | 10 | * sedlibcf.inp: New file. |
diff --git a/msdos/depfiles.bat b/msdos/depfiles.bat new file mode 100644 index 00000000000..22fcfc3dcd6 --- /dev/null +++ b/msdos/depfiles.bat | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | @echo off | ||
| 2 | rem ---------------------------------------------------------------------- | ||
| 3 | rem Auxiliary script for MSDOS, run by ../config.bat | ||
| 4 | rem Copyright (C) 2011 Free Software Foundation, Inc. | ||
| 5 | |||
| 6 | rem This file is part of GNU Emacs. | ||
| 7 | |||
| 8 | rem GNU Emacs is free software: you can redistribute it and/or modify | ||
| 9 | rem it under the terms of the GNU General Public License as published by | ||
| 10 | rem the Free Software Foundation, either version 3 of the License, or | ||
| 11 | rem (at your option) any later version. | ||
| 12 | |||
| 13 | rem GNU Emacs is distributed in the hope that it will be useful, | ||
| 14 | rem but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | rem GNU General Public License for more details. | ||
| 17 | |||
| 18 | rem You should have received a copy of the GNU General Public License | ||
| 19 | rem along with GNU Emacs. If not, see http://www.gnu.org/licenses/. | ||
| 20 | |||
| 21 | rem ---------------------------------------------------------------------- | ||
| 22 | |||
| 23 | echo %1 | sed -e "s,^,@echo # dummy > deps\\," -e "s,\.c,.Po," > tdepfile.bat | ||
| 24 | call tdepfile | ||
| 25 | del tdepfile.bat | ||
diff --git a/msdos/sedlibmk.inp b/msdos/sedlibmk.inp index 2ee342eb29a..becdbfb598a 100644 --- a/msdos/sedlibmk.inp +++ b/msdos/sedlibmk.inp | |||
| @@ -285,7 +285,7 @@ s/^@am__fastdepCC_FALSE/\#/ | |||
| 285 | CONFIG_CLEAN_FILES = xyzzy | 285 | CONFIG_CLEAN_FILES = xyzzy |
| 286 | /^CONFIG_CLEAN_VPATH_FILES *= *$/c\ | 286 | /^CONFIG_CLEAN_VPATH_FILES *= *$/c\ |
| 287 | CONFIG_CLEAN_VPATH_FILES = xyzzy | 287 | CONFIG_CLEAN_VPATH_FILES = xyzzy |
| 288 | s/^ -*test -z.*|| rm/ -rm/ | 288 | s/^ -*test -z.*|| rm/ -rm/ |
| 289 | s/@echo /@djecho/ | 289 | s/@echo /@djecho/ |
| 290 | # | 290 | # |
| 291 | # Fix the recipes for header files | 291 | # Fix the recipes for header files |