restructure read_char quit handling
[bpt/emacs.git] / nt / Makefile.in
CommitLineData
bbece175 1### @configure_input@
095bf253 2
ba318903 3# Copyright (C) 2013-2014 Free Software Foundation, Inc.
095bf253
EZ
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# Avoid trouble on systems where the `SHELL' variable might be
21# inherited from the environment.
22SHELL = /bin/sh
23
24# ==================== Things `configure' will edit ====================
25
26CC=@CC@
27CFLAGS=@CFLAGS@
b24ffa81
GM
28CPPFLAGS = @CPPFLAGS@
29LDFLAGS = @LDFLAGS@
30
095bf253
EZ
31version=@version@
32## Used in $archlibdir.
33configuration=@configuration@
34EXEEXT=@EXEEXT@
35C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
36C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
37PROFILING_CFLAGS = @PROFILING_CFLAGS@
38WARN_CFLAGS = @WARN_CFLAGS@
39WERROR_CFLAGS = @WERROR_CFLAGS@
40
41# Program name transformation.
42TRANSFORM = @program_transform_name@
43
44# ==================== Where To Install Things ====================
45
46# The default location for installation. Everything is placed in
47# subdirectories of this directory. The default values for many of
48# the variables below are expressed in terms of this one, so you may
49# not need to change them. This is set with the --prefix option to
50# `../configure'.
51prefix=@prefix@
52
53# Like `prefix', but used for architecture-specific files. This is
54# set with the --exec-prefix option to `../configure'.
55exec_prefix=@exec_prefix@
56
57# Where to install Emacs and other binaries that people will want to
58# run directly (like etags). This is set with the --bindir option
59# to `../configure'.
60bindir=@bindir@
61
1a4c95f6
JB
62# The root of the directory tree for read-only architecture-independent
63# data files. ${datadir}, ${infodir} and ${mandir} are based on this.
64datarootdir=@datarootdir@
65
66# Where to install architecture-independent data files. ${lispdir}
67# and ${etcdir} are subdirectories of this. This is set with the
68# --datadir option to `../configure'.
69datadir=@datadir@
70
095bf253
EZ
71# Where to install and expect executable files to be run by Emacs
72# rather than directly by users, and other architecture-dependent
73# data. ${archlibdir} is usually below this. This is set with the
74# --libexecdir option to `../configure'.
75libexecdir=@libexecdir@
76
77# Directory for local state files for all programs.
78localstatedir=@localstatedir@
79
80# Where to find the source code. This is set by the configure
81# script's `--srcdir' option. However, the value of ${srcdir} in
82# this makefile is not identical to what was specified with --srcdir,
83# since the variable here has `/lib-src' added at the end.
84
85# We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
86srcdir=@srcdir@
87VPATH=@srcdir@
88
89# The top-level source directory, also set by configure.
90top_srcdir=@top_srcdir@
11e5e2eb
GM
91# MinGW CPPFLAGS may use this.
92abs_top_srcdir=@abs_top_srcdir@
095bf253
EZ
93
94# ==================== Emacs-specific directories ====================
95
96# These variables hold the values Emacs will actually use. They are
97# based on the values of the standard Make variables above.
98
99# Where to put executables to be run by Emacs rather than the user.
100# This path usually includes the Emacs version and configuration name,
101# so that multiple configurations for multiple versions of Emacs may
102# be installed at once. This can be set with the --archlibdir option
103# to `../configure'.
104archlibdir=@archlibdir@
105
106# ==================== Utility Programs for the Build =================
107
108# ../configure figures out the correct values for these.
109INSTALL = @INSTALL@
1a4c95f6 110INSTALL_DATA = @INSTALL_DATA@
095bf253
EZ
111INSTALL_PROGRAM = @INSTALL_PROGRAM@
112INSTALL_SCRIPT = @INSTALL_SCRIPT@
113# By default, we uphold the dignity of our programs.
114INSTALL_STRIP =
115MKDIR_P = @MKDIR_P@
116
117# ========================== Lists of Files ===========================
118
119# Things that a user might actually run, which should be installed in bindir.
120INSTALLABLES = runemacs${EXEEXT} addpm${EXEEXT}
121
122# Things that Emacs runs internally, which should not be installed in bindir.
123UTILITIES = cmdproxy${EXEEXT} ddeclient${EXEEXT}
124
125# Things that Emacs runs during the build process.
7479dd3e 126DONT_INSTALL =
095bf253
EZ
127
128# All files that are created by the linker, i.e., whose names end in ${EXEEXT}.
129EXE_FILES = ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
130
131# =========================== Configuration ===========================
132
133# MS-Windows resource files and resource compiler
134EMACSRES = @EMACSRES@
135EMACS_MANIFEST = @EMACS_MANIFEST@
136WINDRES = @WINDRES@
137
138## Extra libraries to use when linking addpm.
139LIBS_ADDPM = -lole32 -luuid
140
141## Compilation and linking flags
142BASE_CFLAGS = $(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \
143 $(WARN_CFLAGS) $(WERROR_CFLAGS) \
144 -I. -I${srcdir}
145
146ALL_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${LDFLAGS} ${CPPFLAGS} ${CFLAGS}
8c39c668 147## Unused.
095bf253 148LINK_CFLAGS = ${BASE_CFLAGS} ${LDFLAGS} ${CFLAGS}
8c39c668 149## Unused.
095bf253
EZ
150CPP_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${CPPFLAGS} ${CFLAGS}
151
152all: ${EXE_FILES}
153
154.PHONY: all
155
156## Install the internal utilities. Until they are installed, we can
157## just run them directly from nt/.
158$(DESTDIR)${archlibdir}: all
159 @echo
160 @echo "Installing utilities run internally by Emacs."
48f73cfb 161 umask 022; ${MKDIR_P} "$(DESTDIR)${archlibdir}"
357a5081
GM
162 exp_archlibdir=`cd "$(DESTDIR)${archlibdir}" && /bin/pwd`; \
163 if [ "$$exp_archlibdir" != "`/bin/pwd`" ]; then \
095bf253 164 for file in ${UTILITIES}; do \
48f73cfb 165 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file "$(DESTDIR)${archlibdir}/$$file" ; \
095bf253
EZ
166 done ; \
167 fi
168
169.PHONY: install uninstall mostlyclean clean distclean maintainer-clean
0e6929ec 170.PHONY: bootstrap-clean extraclean check tags
095bf253
EZ
171
172install: $(DESTDIR)${archlibdir}
173 @echo
174 @echo "Installing utilities for users to run."
48f73cfb 175 umask 022; ${MKDIR_P} "$(DESTDIR)${bindir}"
095bf253 176 for file in ${INSTALLABLES} ; do \
48f73cfb 177 $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \
095bf253 178 done
1bba94f2 179 ${MKDIR_P} "$(DESTDIR)${datadir}/emacs/$(version)"
f2601628 180 $(INSTALL_DATA) ${srcdir}/README.W32 "$(DESTDIR)${datadir}/emacs/$(version)"
095bf253
EZ
181
182uninstall:
1a4c95f6 183 rm -f "$(DESTDIR)${datadir}/emacs/$(version)/README.W32"
095bf253 184 for file in ${INSTALLABLES}; do \
48f73cfb 185 rm -f "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \
095bf253 186 done
48f73cfb
GM
187 if [ -d "$(DESTDIR)${archlibdir}" ]; then \
188 (cd "$(DESTDIR)${archlibdir}" && rm -f ${UTILITIES}) \
095bf253
EZ
189 fi
190
191mostlyclean:
38b787fa 192 -rm -f core *.o *.res
095bf253
EZ
193
194clean: mostlyclean
195 -rm -f ${EXE_FILES}
196
197distclean: clean
198 -rm -f TAGS
199 -rm -f Makefile
200
0e6929ec 201bootstrap-clean maintainer-clean: distclean
095bf253
EZ
202 true
203
204extraclean: maintainer-clean
205 -rm -f *~ \#*
206
207## Test the contents of the directory.
208check:
209 @echo "We don't have any tests for the nt/ directory yet."
210
211tags: TAGS
212TAGS: ${EXE_FILES:${EXEEXT}=.c}
213 ../lib-src/etags *.[ch]
214
215## Build the programs
373b3ea6 216addpm${EXEEXT}: ${srcdir}/addpm.c ../src/epaths.h
095bf253
EZ
217 $(CC) ${ALL_CFLAGS} ${srcdir}/addpm.c $(LIBS_ADDPM) -o addpm${EXEEXT}
218
219ddeclient${EXEEXT}: ${srcdir}/ddeclient.c
220 $(CC) ${ALL_CFLAGS} ${srcdir}/ddeclient.c -o ddeclient${EXEEXT}
221
030a1c5e 222cmdproxy${EXEEXT}: ${srcdir}/cmdproxy.c
095bf253
EZ
223 $(CC) ${ALL_CFLAGS} ${srcdir}/cmdproxy.c -o cmdproxy${EXEEXT}
224
030a1c5e 225runemacs${EXEEXT}: ${srcdir}/runemacs.c $(EMACSRES)
b0c63616 226 $(CC) ${ALL_CFLAGS} ${srcdir}/runemacs.c $(EMACSRES) -mwindows \
095bf253
EZ
227 -o runemacs${EXEEXT}
228
030a1c5e 229emacs.res: ${srcdir}/emacs.rc ${srcdir}/icons/emacs.ico ${srcdir}/$(EMACS_MANIFEST)
38b787fa 230 ${WINDRES} -I ${srcdir} -O coff -o emacs.res ${srcdir}/emacs.rc