etc/PROBLEMS small updates
[bpt/emacs.git] / lib / makefile.w32-in
CommitLineData
b46a6a83 1# -*- Makefile -*- for GNU Emacs on the Microsoft Windows API.
f915f0f7
EZ
2# Copyright (C) 2011 Free Software Foundation, Inc.
3
4# This file is part of GNU Emacs.
5
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.
10
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.
15
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/>.
18
19ALL = gnulib
20
21.PHONY: $(ALL)
22
cf38a720 23LOCAL_FLAGS = -I. -I../nt/inc -I../src
f915f0f7
EZ
24LIBS =
25
07adc2c6
JB
26GNULIBOBJS = $(BLD)/c-ctype.$(O) \
27 $(BLD)/c-strcasecmp.$(O) \
28 $(BLD)/c-strncasecmp.$(O) \
29 $(BLD)/dtoastr.$(O) \
388cdec0 30 $(BLD)/dtotimespec.$(O) \
70b0d280
EZ
31 $(BLD)/getopt.$(O) \
32 $(BLD)/getopt1.$(O) \
388cdec0 33 $(BLD)/gettime.$(O) \
70b0d280 34 $(BLD)/strftime.$(O) \
32159fc3 35 $(BLD)/time_r.$(O) \
388cdec0
EZ
36 $(BLD)/timespec-add.$(O) \
37 $(BLD)/timespec-sub.$(O) \
25c51af3 38 $(BLD)/md5.$(O) \
13c3daa4 39 $(BLD)/sha1.$(O) \
3ce9d0d4
LL
40 $(BLD)/sha256.$(O) \
41 $(BLD)/sha512.$(O) \
973f782d 42 $(BLD)/filemode.$(O)
f915f0f7
EZ
43
44#
45# Build the library
46#
47$(BLD)/libgnu.$(A): $(GNULIBOBJS)
48 - $(DEL) $@
49 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
50
d67a9a85 51gnulib: $(BLD)/libgnu.$(A)
f915f0f7
EZ
52
53#
54# Build everything
55#
d67a9a85 56all: $(ALL)
f915f0f7
EZ
57
58### TAGS ###
59
a6fc3b5c
EZ
60FRC:
61
62TAGS: FRC
f915f0f7
EZ
63 ../lib-src/$(BLD)/etags.exe *.c *.h
64
65### DEPENDENCIES ###
66
67EMACS_ROOT = ..
52331d2c
JB
68GNU_LIB = .
69SRC = $(EMACS_ROOT)/src
70NT_INC = $(EMACS_ROOT)/nt/inc
71
72C_CTYPE_H = $(GNU_LIB)/c-ctype.h \
73 $(NT_INC)/stdbool.h
74MS_W32_H = $(SRC)/s/ms-w32.h \
75 $(NT_INC)/sys/stat.h
76CONFIG_H = $(SRC)/config.h \
77 $(MS_W32_H)
78FILEMODE_H = $(GNU_LIB)/filemode.h \
79 $(NT_INC)/sys/stat.h
80FTOASTR_H = $(GNU_LIB)/ftoastr.h \
81 $(GNU_LIB)/intprops.h
82FTOASTR_C = $(GNU_LIB)/ftoastr.c \
83 $(CONFIG_H) \
84 $(FTOASTR_H) \
85 $(GNU_LIB)/ftoastr.h
86GETOPT_INT_H = $(GNU_LIB)/getopt_int.h \
87 $(GNU_LIB)/getopt.h
88MD5_H = $(GNU_LIB)/md5.h \
89 $(NT_INC)/stdint.h
90SHA1_H = $(GNU_LIB)/sha1.h \
91 $(NT_INC)/stdint.h
92SHA256_H = $(GNU_LIB)/sha256.h \
93 $(NT_INC)/stdint.h
94U64_H = $(GNU_LIB)/u64.h \
95 $(NT_INC)/stdint.h
96SHA512_H = $(GNU_LIB)/sha512.h \
97 $(U64_H) \
98 $(GNU_LIB)/u64.h
f915f0f7 99
07adc2c6 100$(BLD)/c-ctype.$(O) : \
52331d2c
JB
101 $(GNU_LIB)/c-ctype.c \
102 $(CONFIG_H) \
103 $(C_CTYPE_H)
07adc2c6
JB
104
105$(BLD)/c-strcasecmp.$(O) : \
52331d2c
JB
106 $(GNU_LIB)/c-strcasecmp.c \
107 $(GNU_LIB)/c-strcase.h \
108 $(CONFIG_H) \
109 $(C_CTYPE_H)
07adc2c6
JB
110
111$(BLD)/c-strncasecmp.$(O) : \
52331d2c
JB
112 $(GNU_LIB)/c-strncasecmp.c \
113 $(GNU_LIB)/c-strcase.h \
114 $(CONFIG_H) \
115 $(C_CTYPE_H)
07adc2c6 116
f915f0f7 117$(BLD)/dtoastr.$(O) : \
52331d2c
JB
118 $(GNU_LIB)/dtoastr.c \
119 $(FTOASTR_C)
f915f0f7 120
388cdec0 121$(BLD)/dtotimespec.$(O) : \
52331d2c
JB
122 $(GNU_LIB)/dtotimespec.c \
123 $(GNU_LIB)/intprops.h \
124 $(GNU_LIB)/timespec.h \
125 $(CONFIG_H)
388cdec0 126
f915f0f7 127$(BLD)/getopt.$(O) : \
52331d2c
JB
128 $(GNU_LIB)/getopt.c \
129 $(GNU_LIB)/getopt.h \
130 $(GNU_LIB)/gettext.h \
131 $(NT_INC)/unistd.h \
132 $(CONFIG_H) \
133 $(GETOPT_INT_H)
f915f0f7
EZ
134
135$(BLD)/getopt1.$(O) : \
52331d2c
JB
136 $(GNU_LIB)/getopt1.c \
137 $(GNU_LIB)/getopt.h \
138 $(CONFIG_H) \
139 $(GETOPT_INT_H)
f915f0f7 140
388cdec0 141$(BLD)/gettime.$(O) : \
52331d2c
JB
142 $(GNU_LIB)/gettime.c \
143 $(GNU_LIB)/timespec.h \
144 $(NT_INC)/sys/time.h \
145 $(CONFIG_H)
388cdec0 146
70b0d280 147$(BLD)/strftime.$(O) : \
52331d2c
JB
148 $(GNU_LIB)/strftime.c \
149 $(GNU_LIB)/strftime.h \
150 $(NT_INC)/stdbool.h \
151 $(CONFIG_H)
70b0d280
EZ
152
153$(BLD)/time_r.$(O) : \
52331d2c
JB
154 $(GNU_LIB)/time_r.c \
155 $(CONFIG_H)
70b0d280 156
388cdec0 157$(BLD)/timespec-add.$(O) : \
52331d2c
JB
158 $(GNU_LIB)/timespec-add.c \
159 $(GNU_LIB)/intprops.h \
160 $(GNU_LIB)/timespec.h \
161 $(CONFIG_H)
388cdec0
EZ
162
163$(BLD)/timespec-sub.$(O) : \
52331d2c
JB
164 $(GNU_LIB)/timespec-sub.c \
165 $(GNU_LIB)/intprops.h \
166 $(GNU_LIB)/timespec.h \
167 $(CONFIG_H)
388cdec0 168
32159fc3 169$(BLD)/md5.$(O) : \
52331d2c
JB
170 $(GNU_LIB)/md5.c \
171 $(NT_INC)/stdalign.h \
172 $(NT_INC)/stdint.h \
173 $(CONFIG_H) \
174 $(MD5_H)
25c51af3 175
13c3daa4 176$(BLD)/sha1.$(O) : \
52331d2c
JB
177 $(GNU_LIB)/sha1.c \
178 $(NT_INC)/stdalign.h \
179 $(NT_INC)/stdint.h \
180 $(CONFIG_H) \
181 $(SHA1_H)
13c3daa4 182
3ce9d0d4 183$(BLD)/sha256.$(O) : \
52331d2c
JB
184 $(GNU_LIB)/sha256.c \
185 $(NT_INC)/stdalign.h \
186 $(NT_INC)/stdint.h \
187 $(CONFIG_H) \
188 $(SHA256_H)
3ce9d0d4
LL
189
190$(BLD)/sha512.$(O) : \
52331d2c
JB
191 $(GNU_LIB)/sha512.c \
192 $(NT_INC)/stdalign.h \
193 $(NT_INC)/stdint.h \
194 $(CONFIG_H) \
195 $(SHA512_H)
3ce9d0d4 196
25c51af3 197$(BLD)/filemode.$(O) : \
52331d2c
JB
198 $(GNU_LIB)/filemode.c \
199 $(CONFIG_H) \
200 $(FILEMODE_H)
32159fc3 201
f915f0f7
EZ
202# The following dependencies are for supporting parallel builds, where
203# we must make sure $(BLD) exists before any compilation starts.
204#
cc06e7e7 205$(GNULIBOBJS): stamp_BLD
f915f0f7
EZ
206
207#
208# Headers we would preprocess if we could.
209#
210getopt.h: getopt_.h
211 $(CP) $(ALL_DEPS) $@
212
213#
214# Maintenance
215#
216clean:
217 - $(DEL) $(COMPILER_TEMP_FILES)
218 - $(DEL) getopt.h
219 - $(DEL_TREE) $(OBJDIR)
220 - $(DEL) stamp_BLD
221
222distclean: cleanall
223 - $(DEL) TAGS
224 - $(DEL) Makefile
225
226maintainer-clean: distclean
227 - $(DEL) getopt_.h
228
229cleanall: clean
230 - $(DEL_TREE) obj
231 - $(DEL_TREE) obj-spd
232 - $(DEL_TREE) oo
233 - $(DEL_TREE) oo-spd
234
235# A dummy target to force other targets to be evaluated.
236doit:
237
238getopt_.h: getopt.in.h $(ARG_NONNULL_H)
239 $(MAKE) $(MFLAGS) getopt_.h-$(SHELLTYPE)
240
241getopt_.h-CMD: doit
242 @echo getopt.in.h or $(ARG_NONNULL_H) is newer than getopt_.h.
243 @echo Run "$(MAKETYPE) getopt_h" in the lib/ subdirectory.
244 @echo You will need GNU Sed to be installed.
245 exit -1
246
247getopt_.h-SH: doit
248 @echo getopt.in.h or $(ARG_NONNULL_H) is newer than getopt_.h.
249 @echo Run '"$(MAKETYPE) getopt_h"' in the lib/ subdirectory.
250 @echo You will need GNU Sed to be installed.
251 exit -1
252
253# Generating getopt_.h from getopt.in.h.
254#
255# To avoid requiring all end users to install Sed, we have below
256# a maintainer-only target that produces getopt_.h from getopt.in.h.
257# For easier maintenance, all the strings that replace the @FOO@
258# placeholder are defined as Make macros below.
259
260HAVE_GETOPT_H = HAVE_GETOPT_H
261INCLUDE_NEXT = include_next
f915f0f7
EZ
262PRAGMA_COLUMNS =
263NEXT_GETOPT_H = <getopt.h>
24e0f6b1 264ARG_NONNULL_H = ../build-aux/snippet/arg-nonnull.h
f915f0f7
EZ
265
266getopt_h:
267 - $(DEL) getopt_.h-t getopt_.h
6a3e57bb
PE
268 sed -e "s!@GUARD_PREFIX@!GL!g" \
269 -e "s!@HAVE_GETOPT_H@!$(HAVE_GETOPT_H)!g" \
f915f0f7
EZ
270 -e "s!@INCLUDE_NEXT@!$(INCLUDE_NEXT)!g" \
271 -e "s!@PRAGMA_SYSTEM_HEADER@!$(PRAGMA_SYSTEM_HEADER)!g" \
272 -e "s!@PRAGMA_COLUMNS@!$(PRAGMA_COLUMNS)!g" \
273 -e "s!@NEXT_GETOPT_H@!$(NEXT_GETOPT_H)!g" \
274 -e "/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)" \
275 -e "/^\# include_next/i # ifndef __GNUC__" \
276 -e "/^\# include_next/i # include <next_getopt.h>" \
277 -e "/^\# include_next/i # else" \
278 -e "/^\# include_next/a # endif" \
279 < getopt.in.h > getopt_.h-t
280 $(CP) getopt_.h-t getopt_.h
281 - $(DEL) getopt_.h-t