Add multi-monitor support on X11.
[emacs.git] / lib / makefile.w32-in
blobcd62fbcd13d362920b26e95f29d4e084582425b4
1 # -*- Makefile -*- for GNU Emacs on the Microsoft Windows API.
2 # Copyright (C) 2011-2013 Free Software Foundation, Inc.
4 # This file is part of GNU Emacs.
6 # GNU Emacs is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
19 ALL = gnulib
21 .PHONY: $(ALL)
23 LOCAL_FLAGS     = -I. -I../nt/inc -I../src
24 LIBS            =
26 GNULIBOBJS = $(BLD)/c-ctype.$(O) \
27              $(BLD)/c-strcasecmp.$(O) \
28              $(BLD)/c-strncasecmp.$(O) \
29              $(BLD)/close-stream.$(O) \
30              $(BLD)/dtoastr.$(O) \
31              $(BLD)/dtotimespec.$(O)  \
32              $(BLD)/execinfo.$(O)  \
33              $(BLD)/fpending.$(O)  \
34              $(BLD)/getopt.$(O)  \
35              $(BLD)/getopt1.$(O) \
36              $(BLD)/gettime.$(O) \
37              $(BLD)/memrchr.$(O) \
38              $(BLD)/strftime.$(O) \
39              $(BLD)/time_r.$(O) \
40              $(BLD)/timespec-add.$(O) \
41              $(BLD)/timespec-sub.$(O) \
42              $(BLD)/md5.$(O) \
43              $(BLD)/sha1.$(O) \
44              $(BLD)/sha256.$(O) \
45              $(BLD)/sha512.$(O) \
46              $(BLD)/sig2str.$(O) \
47              $(BLD)/stat-time.$(O) \
48              $(BLD)/timespec.$(O) \
49              $(BLD)/u64.$(O) \
50              $(BLD)/filemode.$(O)
53 # Build the library
55 $(BLD)/libgnu.$(A):     $(GNULIBOBJS)
56         - $(DEL) $@
57         $(AR) $(AR_OUT)$@ $(ALL_DEPS)
59 gnulib:         $(BLD)/libgnu.$(A)
62 # Build everything
64 all:            $(ALL)
66 ### TAGS ###
68 FRC:
70 TAGS: FRC
71          ../lib-src/$(BLD)/etags.exe *.c *.h
73 ### DEPENDENCIES ###
75 EMACS_ROOT      = ..
76 GNU_LIB         = .
77 SRC             = $(EMACS_ROOT)/src
78 NT_INC          = $(EMACS_ROOT)/nt/inc
80 C_CTYPE_H      = $(GNU_LIB)/c-ctype.h \
81                  $(NT_INC)/stdbool.h
82 MS_W32_H       = $(NT_INC)/ms-w32.h \
83                  $(NT_INC)/sys/stat.h
84 CONF_POST_H    = $(SRC)/conf_post.h \
85                  $(MS_W32_H)
86 CONFIG_H       = $(SRC)/config.h \
87                  $(CONF_POST_H)
88 FILEMODE_H     = $(GNU_LIB)/filemode.h \
89                  $(NT_INC)/sys/stat.h
90 FTOASTR_H      = $(GNU_LIB)/ftoastr.h \
91                  $(GNU_LIB)/intprops.h
92 FTOASTR_C      = $(GNU_LIB)/ftoastr.c \
93                  $(CONFIG_H) \
94                  $(FTOASTR_H)
95 GETOPT_INT_H   = $(GNU_LIB)/getopt_int.h \
96                  $(GNU_LIB)/getopt.h
97 MD5_H          = $(GNU_LIB)/md5.h \
98                  $(NT_INC)/stdint.h
99 SHA1_H         = $(GNU_LIB)/sha1.h \
100                  $(NT_INC)/stdint.h
101 SHA256_H       = $(GNU_LIB)/sha256.h \
102                  $(NT_INC)/stdint.h
103 U64_H          = $(GNU_LIB)/u64.h \
104                  $(NT_INC)/stdint.h
105 SHA512_H       = $(GNU_LIB)/sha512.h \
106                  $(U64_H)
107 SIG2STR_H      = $(GNU_LIB)/sig2str.h \
108                  $(GNU_LIB)/intprops.h
109 STAT_TIME_H    = $(GNU_LIB)/stat-time.h \
110                  $(NT_INC)/sys/stat.h
112 $(BLD)/c-ctype.$(O) : \
113         $(GNU_LIB)/c-ctype.c \
114         $(CONFIG_H) \
115         $(C_CTYPE_H)
117 $(BLD)/c-strcasecmp.$(O) : \
118         $(GNU_LIB)/c-strcasecmp.c \
119         $(GNU_LIB)/c-strcase.h \
120         $(CONFIG_H) \
121         $(C_CTYPE_H)
123 $(BLD)/c-strncasecmp.$(O) : \
124         $(GNU_LIB)/c-strncasecmp.c \
125         $(GNU_LIB)/c-strcase.h \
126         $(CONFIG_H) \
127         $(C_CTYPE_H)
129 $(BLD)/close-stream.$(O) : \
130         $(GNU_LIB)/close-stream.c \
131         $(GNU_LIB)/close-stream.h \
132         $(GNU_LIB)/fpending.h \
133         $(NT_INC)/stdbool.h \
134         $(CONFIG_H)
136 $(BLD)/dtoastr.$(O) : \
137         $(GNU_LIB)/dtoastr.c \
138         $(FTOASTR_C)
140 $(BLD)/dtotimespec.$(O) : \
141         $(GNU_LIB)/dtotimespec.c \
142         $(GNU_LIB)/intprops.h \
143         $(GNU_LIB)/timespec.h \
144         $(CONFIG_H)
146 $(BLD)/execinfo.$(O) : \
147         $(GNU_LIB)/execinfo.c \
148         $(GNU_LIB)/execinfo.h \
149         $(CONFIG_H)
151 $(BLD)/fpending.$(O) : \
152         $(GNU_LIB)/fpending.c \
153         $(GNU_LIB)/fpending.h \
154         $(CONFIG_H)
156 $(BLD)/getopt.$(O) : \
157         $(GNU_LIB)/getopt.c \
158         $(GNU_LIB)/getopt.h \
159         $(GNU_LIB)/gettext.h \
160         $(NT_INC)/unistd.h \
161         $(CONFIG_H) \
162         $(GETOPT_INT_H)
164 $(BLD)/getopt1.$(O) : \
165         $(GNU_LIB)/getopt1.c \
166         $(GNU_LIB)/getopt.h \
167         $(CONFIG_H) \
168         $(GETOPT_INT_H)
170 $(BLD)/gettime.$(O) : \
171         $(GNU_LIB)/gettime.c \
172         $(GNU_LIB)/timespec.h \
173         $(NT_INC)/sys/time.h \
174         $(CONFIG_H)
176 $(BLD)/strftime.$(O) : \
177         $(GNU_LIB)/strftime.c \
178         $(GNU_LIB)/strftime.h \
179         $(NT_INC)/stdbool.h \
180         $(CONFIG_H)
182 $(BLD)/time_r.$(O) : \
183         $(GNU_LIB)/time_r.c \
184         $(CONFIG_H)
186 $(BLD)/timespec-add.$(O) : \
187         $(GNU_LIB)/timespec-add.c \
188         $(GNU_LIB)/intprops.h \
189         $(GNU_LIB)/timespec.h \
190         $(CONFIG_H)
192 $(BLD)/timespec-sub.$(O) : \
193         $(GNU_LIB)/timespec-sub.c \
194         $(GNU_LIB)/intprops.h \
195         $(GNU_LIB)/timespec.h \
196         $(CONFIG_H)
198 $(BLD)/md5.$(O) : \
199         $(GNU_LIB)/md5.c \
200         $(NT_INC)/stdalign.h \
201         $(NT_INC)/stdint.h \
202         $(CONFIG_H) \
203         $(MD5_H)
205 $(BLD)/memrchr.$(O) : \
206         $(GNU_LIB)/memrchr.c \
207         $(CONFIG_H)
209 $(BLD)/sha1.$(O) : \
210         $(GNU_LIB)/sha1.c \
211         $(NT_INC)/stdalign.h \
212         $(NT_INC)/stdint.h \
213         $(CONFIG_H) \
214         $(SHA1_H)
216 $(BLD)/sha256.$(O) : \
217         $(GNU_LIB)/sha256.c \
218         $(NT_INC)/stdalign.h \
219         $(NT_INC)/stdint.h \
220         $(CONFIG_H) \
221         $(SHA256_H)
223 $(BLD)/sha512.$(O) : \
224         $(GNU_LIB)/sha512.c \
225         $(NT_INC)/stdalign.h \
226         $(NT_INC)/stdint.h \
227         $(CONFIG_H) \
228         $(SHA512_H)
230 $(BLD)/stat-time.$(O) : \
231         $(GNU_LIB)/stat-time.c \
232         $(CONFIG_H) \
233         $(STAT_TIME_H)
235 $(BLD)/timespec.$(O) : \
236         $(GNU_LIB)/timespec.c \
237         $(GNU_LIB)/timespec.h \
238         $(CONFIG_H)
240 $(BLD)/u64.$(O) : \
241         $(GNU_LIB)/u64.c \
242         $(CONFIG_H) \
243         $(U64_H)
245 $(BLD)/filemode.$(O) : \
246         $(GNU_LIB)/filemode.c \
247         $(CONFIG_H) \
248         $(FILEMODE_H)
250 $(BLD)/sig2str.$(O) : \
251         $(GNU_LIB)/sig2str.c \
252         $(CONFIG_H) \
253         $(SIG2STR_H)
256 # The following dependencies are for supporting parallel builds, where
257 # we must make sure $(BLD) exists before any compilation starts.
259 $(GNULIBOBJS): stamp_BLD
262 # Headers we would preprocess if we could.
264 getopt.h:       getopt_.h
265         $(CP) $(ALL_DEPS) $@
268 # Maintenance
270 clean:
271         - $(DEL) $(COMPILER_TEMP_FILES)
272         - $(DEL) getopt.h
273         - $(DEL_TREE) $(OBJDIR)
274         - $(DEL) stamp_BLD
276 distclean:      cleanall
277         - $(DEL) TAGS
278         - $(DEL) Makefile
280 maintainer-clean: distclean
281         - $(DEL) getopt_.h
283 cleanall:       clean
284         - $(DEL_TREE) obj
285         - $(DEL_TREE) obj-spd
286         - $(DEL_TREE) oo
287         - $(DEL_TREE) oo-spd
289 # A dummy target to force other targets to be evaluated.
290 doit:
292 getopt_.h: getopt.in.h $(ARG_NONNULL_H)
293         $(MAKE) $(MFLAGS) getopt_.h-$(SHELLTYPE)
295 getopt_.h-CMD: doit
296         @echo getopt.in.h or $(ARG_NONNULL_H) is newer than getopt_.h.
297         @echo Run "$(MAKETYPE) getopt_h" in the lib/ subdirectory.
298         @echo You will need GNU Sed to be installed.
299         exit -1
301 getopt_.h-SH: doit
302         @echo getopt.in.h or $(ARG_NONNULL_H) is newer than getopt_.h.
303         @echo Run '"$(MAKETYPE) getopt_h"' in the lib/ subdirectory.
304         @echo You will need GNU Sed to be installed.
305         exit -1
307 # Generating getopt_.h from getopt.in.h.
309 # To avoid requiring all end users to install Sed, we have below
310 # a maintainer-only target that produces getopt_.h from getopt.in.h.
311 # For easier maintenance, all the strings that replace the @FOO@
312 # placeholder are defined as Make macros below.
314 HAVE_GETOPT_H = HAVE_GETOPT_H
315 INCLUDE_NEXT = include_next
316 PRAGMA_COLUMNS =
317 NEXT_GETOPT_H = <getopt.h>
318 ARG_NONNULL_H = ../build-aux/snippet/arg-nonnull.h
320 getopt_h:
321         - $(DEL) getopt_.h-t getopt_.h
322         sed -e "s!@GUARD_PREFIX@!GL!g" \
323             -e "s!@HAVE_GETOPT_H@!$(HAVE_GETOPT_H)!g" \
324             -e "s!@INCLUDE_NEXT@!$(INCLUDE_NEXT)!g" \
325             -e "s!@PRAGMA_SYSTEM_HEADER@!$(PRAGMA_SYSTEM_HEADER)!g" \
326             -e "s!@PRAGMA_COLUMNS@!$(PRAGMA_COLUMNS)!g" \
327             -e "s!@NEXT_GETOPT_H@!$(NEXT_GETOPT_H)!g" \
328             -e "/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)" \
329             -e "/^\# include_next/i # ifndef __GNUC__" \
330             -e "/^\# include_next/i # include <next_getopt.h>" \
331             -e "/^\# include_next/i # else" \
332             -e "/^\# include_next/a # endif" \
333               < getopt.in.h > getopt_.h-t
334         $(CP) getopt_.h-t getopt_.h
335         - $(DEL) getopt_.h-t
337 execinfo.h: execinfo.in.h
338         $(CP) execinfo.in.h $@