3 # Copyright (C) 2013-2015 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.
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.
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 # Avoid trouble on systems where the `SHELL' variable might be
21 # inherited from the environment.
24 # ==================== Things `configure' will edit ====================
32 ## Used in $archlibdir.
33 configuration
=@configuration@
35 C_SWITCH_SYSTEM
=@C_SWITCH_SYSTEM@
36 C_SWITCH_MACHINE
=@C_SWITCH_MACHINE@
37 PROFILING_CFLAGS
= @PROFILING_CFLAGS@
38 WARN_CFLAGS
= @WARN_CFLAGS@
39 WERROR_CFLAGS
= @WERROR_CFLAGS@
41 # Program name transformation.
42 TRANSFORM
= @program_transform_name@
45 AM_DEFAULT_VERBOSITY
= @AM_DEFAULT_VERBOSITY@
47 AM_V_CC
= $(am__v_CC_@AM_V@
)
48 am__v_CC_
= $(am__v_CC_@AM_DEFAULT_V@
)
49 am__v_CC_0
= @echo
" CC " $@
;
52 AM_V_CCLD
= $(am__v_CCLD_@AM_V@
)
53 am__v_CCLD_
= $(am__v_CCLD_@AM_DEFAULT_V@
)
54 am__v_CCLD_0
= @echo
" CCLD " $@
;
57 AM_V_RC
= $(am__v_RC_@AM_V@
)
58 am__v_RC_
= $(am__v_RC_@AM_DEFAULT_V@
)
59 am__v_RC_0
= @echo
" RC " $@
;
62 # ==================== Where To Install Things ====================
64 # The default location for installation. Everything is placed in
65 # subdirectories of this directory. The default values for many of
66 # the variables below are expressed in terms of this one, so you may
67 # not need to change them. This is set with the --prefix option to
71 # Like `prefix', but used for architecture-specific files. This is
72 # set with the --exec-prefix option to `../configure'.
73 exec_prefix=@
exec_prefix@
75 # Where to install Emacs and other binaries that people will want to
76 # run directly (like etags). This is set with the --bindir option
80 # The root of the directory tree for read-only architecture-independent
81 # data files. ${datadir}, ${infodir} and ${mandir} are based on this.
82 datarootdir
=@datarootdir@
84 # Where to install architecture-independent data files. ${lispdir}
85 # and ${etcdir} are subdirectories of this. This is set with the
86 # --datadir option to `../configure'.
89 # Where to install and expect executable files to be run by Emacs
90 # rather than directly by users, and other architecture-dependent
91 # data. ${archlibdir} is usually below this. This is set with the
92 # --libexecdir option to `../configure'.
93 libexecdir
=@libexecdir@
95 # Directory for local state files for all programs.
96 localstatedir
=@localstatedir@
98 # Where to find the source code. This is set by the configure
99 # script's `--srcdir' option. However, the value of ${srcdir} in
100 # this makefile is not identical to what was specified with --srcdir,
101 # since the variable here has `/lib-src' added at the end.
103 # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
107 # The top-level source directory, also set by configure.
108 top_srcdir
=@top_srcdir@
109 # MinGW CPPFLAGS may use this.
110 abs_top_srcdir
=@abs_top_srcdir@
112 # ==================== Emacs-specific directories ====================
114 # These variables hold the values Emacs will actually use. They are
115 # based on the values of the standard Make variables above.
117 # Where to put executables to be run by Emacs rather than the user.
118 # This path usually includes the Emacs version and configuration name,
119 # so that multiple configurations for multiple versions of Emacs may
120 # be installed at once. This can be set with the --archlibdir option
122 archlibdir
=@archlibdir@
124 # ==================== Utility Programs for the Build =================
126 # ../configure figures out the correct values for these.
128 INSTALL_DATA
= @INSTALL_DATA@
129 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
130 INSTALL_SCRIPT
= @INSTALL_SCRIPT@
131 # By default, we uphold the dignity of our programs.
135 # ========================== Lists of Files ===========================
137 # Things that a user might actually run, which should be installed in bindir.
138 INSTALLABLES
= runemacs
${EXEEXT} addpm
${EXEEXT}
140 # Things that Emacs runs internally, which should not be installed in bindir.
141 UTILITIES
= cmdproxy
${EXEEXT} ddeclient
${EXEEXT}
143 # Things that Emacs runs during the build process.
146 # All files that are created by the linker, i.e., whose names end in ${EXEEXT}.
147 EXE_FILES
= ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
149 # =========================== Configuration ===========================
151 # MS-Windows resource files and resource compiler
152 EMACSRES
= @EMACSRES@
153 EMACS_MANIFEST
= @EMACS_MANIFEST@
156 ## Extra libraries to use when linking addpm.
157 LIBS_ADDPM
= -lole32
-luuid
159 ## Compilation and linking flags
160 BASE_CFLAGS
= $(C_SWITCH_SYSTEM
) $(C_SWITCH_MACHINE
) \
161 $(WARN_CFLAGS
) $(WERROR_CFLAGS
) \
164 ALL_CFLAGS
= ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${LDFLAGS} ${CPPFLAGS} ${CFLAGS}
166 LINK_CFLAGS
= ${BASE_CFLAGS} ${LDFLAGS} ${CFLAGS}
168 CPP_CFLAGS
= ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${CPPFLAGS} ${CFLAGS}
174 ## Install the internal utilities. Until they are installed, we can
175 ## just run them directly from nt/.
176 $(DESTDIR
)${archlibdir}: all
178 @echo
"Installing utilities run internally by Emacs."
179 umask
022; ${MKDIR_P} "$(DESTDIR)${archlibdir}"
180 exp_archlibdir
=`cd "$(DESTDIR)${archlibdir}" && /bin/pwd`; \
181 if
[ "$$exp_archlibdir" != "`/bin/pwd`" ]; then \
182 for file in
${UTILITIES}; do \
183 $(INSTALL_PROGRAM
) $(INSTALL_STRIP
) $$file "$(DESTDIR)${archlibdir}/$$file" ; \
187 .PHONY
: install uninstall mostlyclean clean distclean maintainer-clean
188 .PHONY
: bootstrap-clean extraclean
check tags
190 install: $(DESTDIR
)${archlibdir}
192 @echo
"Installing utilities for users to run."
193 umask
022; ${MKDIR_P} "$(DESTDIR)${bindir}"
194 for file in
${INSTALLABLES} ; do \
195 $(INSTALL_PROGRAM
) $(INSTALL_STRIP
) $${file} "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \
197 ${MKDIR_P} "$(DESTDIR)${datadir}/emacs/$(version)"
198 $(INSTALL_DATA
) ${srcdir}/README.W32
"$(DESTDIR)${datadir}/emacs/$(version)"
201 rm -f
"$(DESTDIR)${datadir}/emacs/$(version)/README.W32"
202 for file in
${INSTALLABLES}; do \
203 rm -f
"$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \
205 if
[ -d
"$(DESTDIR)${archlibdir}" ]; then \
206 (cd
"$(DESTDIR)${archlibdir}" && rm -f
${UTILITIES}) \
210 -rm -f core
*.o
*.res
216 -rm -f TAGS Makefile
*.rc
218 bootstrap-clean maintainer-clean
: distclean
221 extraclean
: maintainer-clean
224 ## Test the contents of the directory.
226 @echo
"We don't have any tests for the nt/ directory yet."
229 TAGS
: ${EXE_FILES
:${EXEEXT}=.c
}
230 ..
/lib-src
/etags
*.
[ch
]
232 ## Build the programs
233 addpm
${EXEEXT}: ${srcdir}/addpm.c ..
/src
/epaths.h
234 $(AM_V_CCLD
)$(CC
) ${ALL_CFLAGS} $< $(LIBS_ADDPM
) -o
$@
236 ddeclient
${EXEEXT}: ${srcdir}/ddeclient.c
237 $(AM_V_CCLD
)$(CC
) ${ALL_CFLAGS} $< -o
$@
239 cmdproxy
${EXEEXT}: ${srcdir}/cmdproxy.c
240 $(AM_V_CCLD
)$(CC
) ${ALL_CFLAGS} $< -o
$@
242 runemacs
${EXEEXT}: ${srcdir}/runemacs.c
$(EMACSRES
)
243 $(AM_V_CCLD
)$(CC
) ${ALL_CFLAGS} $^
-mwindows
-o
$@
245 ## Also used in ../src/Makefile.
246 emacs.res ..
/src
/emacs.res
: emacs.rc
${srcdir}/icons
/emacs.ico \
247 ${srcdir}/icons
/hand.cur
${srcdir}/$(EMACS_MANIFEST
)
248 $(AM_V_RC
)${WINDRES} -I
${srcdir} -O coff
-o
$@
$<