diff options
| author | Glenn Morris | 2010-05-20 17:48:14 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-05-20 17:48:14 -0700 |
| commit | 66dbf213eabcba05f54ff85e79ae44bbbeae4386 (patch) | |
| tree | 0205cff46fcf6198581c5083aef6298f6d456bf3 /src/ns.mk | |
| parent | 04384b2d186ef8e3fb77f644d6621fc52b83c99a (diff) | |
| download | emacs-66dbf213eabcba05f54ff85e79ae44bbbeae4386.tar.gz emacs-66dbf213eabcba05f54ff85e79ae44bbbeae4386.zip | |
Handle some HAVE_NS Makefile conditionals with configure.
* configure.in (ns_frag): New output file.
* src/Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
Move these rules to ns.mk.
* ns.mk: New file. Copyright years based on date of nextstep merge.
* msdos/sed1v2.inp(@ns_frag@): Edit to nothing.
Diffstat (limited to 'src/ns.mk')
| -rw-r--r-- | src/ns.mk | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/ns.mk b/src/ns.mk new file mode 100644 index 00000000000..255ffa7046b --- /dev/null +++ b/src/ns.mk | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | /* autodeps.mk --- src/Makefile fragment for GNU Emacs | ||
| 2 | |||
| 3 | Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | ||
| 19 | |||
| 20 | Commentary: | ||
| 21 | |||
| 22 | This is inserted in src/Makefile if HAVE_NS. | ||
| 23 | |||
| 24 | The only reason this is in a separate file is because $ns_appdir, | ||
| 25 | which appears as a target, is empty on non-NS builds. Some makes | ||
| 26 | do not like empty targets, even if they are never used. */ | ||
| 27 | |||
| 28 | ${ns_appdir}: ${ns_appsrc} | ||
| 29 | rm -fr ${ns_appdir} | ||
| 30 | mkdir -p ${ns_appdir} | ||
| 31 | ( cd ${ns_appsrc} ; tar cfh - . ) | ( cd ${ns_appdir} ; umask 022; tar xf - ) | ||
| 32 | |||
| 33 | ${ns_appbindir}Emacs: emacs${EXEEXT} | ||
| 34 | mkdir -p ${ns_appbindir} | ||
| 35 | cp -f emacs${EXEEXT} ${ns_appbindir}Emacs | ||
| 36 | |||
| 37 | ns-app: ${ns_appdir} ${ns_appbindir}Emacs | ||
| 38 | |||
| 39 | /* ns.mk ends here */ | ||