1 # nt/Makefile for GNU Emacs.
3 # Copyright (C) 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.
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 ====================
29 ## Used in $archlibdir.
30 configuration
=@configuration@
32 C_SWITCH_SYSTEM
=@C_SWITCH_SYSTEM@
33 C_SWITCH_MACHINE
=@C_SWITCH_MACHINE@
34 PROFILING_CFLAGS
= @PROFILING_CFLAGS@
35 WARN_CFLAGS
= @WARN_CFLAGS@
36 WERROR_CFLAGS
= @WERROR_CFLAGS@
38 # Program name transformation.
39 TRANSFORM
= @program_transform_name@
41 # ==================== Where To Install Things ====================
43 # The default location for installation. Everything is placed in
44 # subdirectories of this directory. The default values for many of
45 # the variables below are expressed in terms of this one, so you may
46 # not need to change them. This is set with the --prefix option to
50 # Like `prefix', but used for architecture-specific files. This is
51 # set with the --exec-prefix option to `../configure'.
52 exec_prefix=@
exec_prefix@
54 # Where to install Emacs and other binaries that people will want to
55 # run directly (like etags). This is set with the --bindir option
59 # Where to install and expect executable files to be run by Emacs
60 # rather than directly by users, and other architecture-dependent
61 # data. ${archlibdir} is usually below this. This is set with the
62 # --libexecdir option to `../configure'.
63 libexecdir
=@libexecdir@
65 # Directory for local state files for all programs.
66 localstatedir
=@localstatedir@
68 # Where to find the source code. This is set by the configure
69 # script's `--srcdir' option. However, the value of ${srcdir} in
70 # this makefile is not identical to what was specified with --srcdir,
71 # since the variable here has `/lib-src' added at the end.
73 # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
77 # The top-level source directory, also set by configure.
78 top_srcdir
=@top_srcdir@
80 # ==================== Emacs-specific directories ====================
82 # These variables hold the values Emacs will actually use. They are
83 # based on the values of the standard Make variables above.
85 # Where to put executables to be run by Emacs rather than the user.
86 # This path usually includes the Emacs version and configuration name,
87 # so that multiple configurations for multiple versions of Emacs may
88 # be installed at once. This can be set with the --archlibdir option
90 archlibdir
=@archlibdir@
92 # ==================== Utility Programs for the Build =================
94 # ../configure figures out the correct values for these.
96 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
97 INSTALL_SCRIPT
= @INSTALL_SCRIPT@
98 # By default, we uphold the dignity of our programs.
102 # ========================== Lists of Files ===========================
104 # Things that a user might actually run, which should be installed in bindir.
105 INSTALLABLES
= runemacs
${EXEEXT} addpm
${EXEEXT}
107 # Things that Emacs runs internally, which should not be installed in bindir.
108 UTILITIES
= cmdproxy
${EXEEXT} ddeclient
${EXEEXT}
110 # Things that Emacs runs during the build process.
111 DONT_INSTALL
= addsection
${EXEEXT}
113 # All files that are created by the linker, i.e., whose names end in ${EXEEXT}.
114 EXE_FILES
= ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}
116 # =========================== Configuration ===========================
118 # MS-Windows resource files and resource compiler
119 EMACSRES
= @EMACSRES@
120 EMACS_MANIFEST
= @EMACS_MANIFEST@
123 ## Extra libraries to use when linking addpm.
124 LIBS_ADDPM
= -lole32
-luuid
126 ## Compilation and linking flags
127 BASE_CFLAGS
= $(C_SWITCH_SYSTEM
) $(C_SWITCH_MACHINE
) \
128 $(WARN_CFLAGS
) $(WERROR_CFLAGS
) \
131 ALL_CFLAGS
= ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${LDFLAGS} ${CPPFLAGS} ${CFLAGS}
132 LINK_CFLAGS
= ${BASE_CFLAGS} ${LDFLAGS} ${CFLAGS}
133 CPP_CFLAGS
= ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${CPPFLAGS} ${CFLAGS}
139 ## Install the internal utilities. Until they are installed, we can
140 ## just run them directly from nt/.
141 $(DESTDIR
)${archlibdir}: all
143 @echo
"Installing utilities run internally by Emacs."
144 umask
022; ${MKDIR_P} $(DESTDIR
)${archlibdir}
145 if
[ `cd $(DESTDIR)${archlibdir} && /bin/pwd` != `/bin/pwd` ]; then \
146 for file in
${UTILITIES}; do \
147 $(INSTALL_PROGRAM
) $(INSTALL_STRIP
) $$file $(DESTDIR
)${archlibdir}/$$file ; \
151 .PHONY
: install uninstall mostlyclean clean distclean maintainer-clean
152 .PHONY
: extraclean
check tags
154 install: $(DESTDIR
)${archlibdir}
156 @echo
"Installing utilities for users to run."
157 umask
022; ${MKDIR_P} $(DESTDIR
)${bindir}
158 for file in
${INSTALLABLES} ; do \
159 $(INSTALL_PROGRAM
) $(INSTALL_STRIP
) $${file} $(DESTDIR
)${bindir}/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \
163 for file in
${INSTALLABLES}; do \
164 rm -f
$(DESTDIR
)${bindir}/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \
166 if
[ -d
$(DESTDIR
)${archlibdir} ]; then \
167 (cd
$(DESTDIR
)${archlibdir} && rm -f
${UTILITIES}) \
171 -rm -f core
*.o
*.res
180 maintainer-clean
: distclean
183 extraclean
: maintainer-clean
186 ## Test the contents of the directory.
188 @echo
"We don't have any tests for the nt/ directory yet."
191 TAGS
: ${EXE_FILES
:${EXEEXT}=.c
}
192 ..
/lib-src
/etags
*.
[ch
]
194 ## Build the programs
195 addsection
${EXEEXT}: ${srcdir}/addsection.c
196 $(CC
) ${ALL_CFLAGS} ${srcdir}/addsection.c
-o addsection
${EXEEXT}
198 addpm
${EXEEXT}: ${srcdir}/addpm.c ..
/src
/epaths.h
199 $(CC
) ${ALL_CFLAGS} ${srcdir}/addpm.c
$(LIBS_ADDPM
) -o addpm
${EXEEXT}
201 ddeclient
${EXEEXT}: ${srcdir}/ddeclient.c
202 $(CC
) ${ALL_CFLAGS} ${srcdir}/ddeclient.c
-o ddeclient
${EXEEXT}
204 cmdproxy
${EXEEXT}: ${srcdir}/cmdproxy.c
205 $(CC
) ${ALL_CFLAGS} ${srcdir}/cmdproxy.c
-o cmdproxy
${EXEEXT}
207 runemacs
${EXEEXT}: ${srcdir}/runemacs.c
$(EMACSRES
)
208 $(CC
) ${ALL_CFLAGS} ${srcdir}/runemacs.c
$(EMACSRES
) -mwindows \
211 emacs.res
: ${srcdir}/emacs.rc
${srcdir}/icons
/emacs.ico
${srcdir}/$(EMACS_MANIFEST
)
212 ${WINDRES} -I
${srcdir} -O coff
-o emacs.res
${srcdir}/emacs.rc