Fix bug #13515 with processing DBCS file names on MS-Windows.
[emacs.git] / nextstep / Makefile.in
blob187a317d6cb5ccbc2ad494e5eefc79e0929cbe00
1 ### nextstep/Makefile for GNU Emacs
3 ## Copyright (C) 2012-2013 Free Software Foundation, Inc.
5 ## This file is part of GNU Emacs.
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/>.
20 ### Commentary:
22 ### Code:
23 SHELL = /bin/sh
25 srcdir = @srcdir@
26 EXEEXT = @EXEEXT@
28 @SET_MAKE@
29 MKDIR_P = @MKDIR_P@
31 ns_appdir = @ns_appdir@
32 ns_appbindir = @ns_appbindir@
33 ns_appsrc = @ns_appsrc@
35 ${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc}
36 rm -rf ${ns_appdir}
37 ${MKDIR_P} ${ns_appdir}
38 ( cd ${srcdir}/${ns_appsrc} ; tar cfh - . ) | \
39 ( cd ${ns_appdir} ; umask 022; tar xf - )
40 [ `cd ${srcdir} && /bin/pwd` = `/bin/pwd` ] || \
41 ( cd ${ns_appsrc} ; tar cfh - . ) | \
42 ( cd ${ns_appdir} ; umask 022; tar xf - )
44 ${ns_appbindir}/Emacs: ${ns_appdir} ../src/emacs${EXEEXT}
45 ${MKDIR_P} ${ns_appbindir}
46 cp -f ../src/emacs${EXEEXT} ${ns_appbindir}/Emacs
48 .PHONY: all
50 all: ${ns_appdir} ${ns_appbindir}/Emacs
53 .PHONY: clean distclean maintainer-clean
55 clean:
56 rm -rf ${ns_appdir}
58 distclean: clean
59 rm -f Makefile
60 rm -f GNUstep/Emacs.base/Resources/Info-gnustep.plist \
61 GNUstep/Emacs.base/Resources/Emacs.desktop \
62 Cocoa/Emacs.base/Contents/Info.plist \
63 Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings
65 maintainer-clean: distclean
67 ### Makefile.in ends here