aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEli Zaretskii2012-08-03 13:02:48 +0300
committerEli Zaretskii2012-08-03 13:02:48 +0300
commitfddc1855e20074786b238c4f9458bb7e72c612f4 (patch)
tree653ca13ca502554bff293b83bece15a4ff32120c /lib
parentbff2a4b8f265893589d49da4c85fb23bfaea6e22 (diff)
downloademacs-fddc1855e20074786b238c4f9458bb7e72c612f4.tar.gz
emacs-fddc1855e20074786b238c4f9458bb7e72c612f4.zip
Adapt lib/makefile.w32-in to latest gnulib imports.
lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/stat-time.$(O), $(BLD)/timespec.$(O), and $(BLD)/u64.$(O). (SHA512_H): Don't mention u64.h twice. ($(BLD)/stat-time.$(O), ($(BLD)/timespec.$(O), ($(BLD)/u64.$(O)): New targets.
Diffstat (limited to 'lib')
-rw-r--r--lib/makefile.w32-in19
1 files changed, 17 insertions, 2 deletions
diff --git a/lib/makefile.w32-in b/lib/makefile.w32-in
index db451d542a8..af45b2685bd 100644
--- a/lib/makefile.w32-in
+++ b/lib/makefile.w32-in
@@ -39,6 +39,9 @@ GNULIBOBJS = $(BLD)/c-ctype.$(O) \
39 $(BLD)/sha1.$(O) \ 39 $(BLD)/sha1.$(O) \
40 $(BLD)/sha256.$(O) \ 40 $(BLD)/sha256.$(O) \
41 $(BLD)/sha512.$(O) \ 41 $(BLD)/sha512.$(O) \
42 $(BLD)/stat-time.$(O) \
43 $(BLD)/timespec.$(O) \
44 $(BLD)/u64.$(O) \
42 $(BLD)/filemode.$(O) 45 $(BLD)/filemode.$(O)
43 46
44# 47#
@@ -96,8 +99,7 @@ SHA256_H = $(GNU_LIB)/sha256.h \
96U64_H = $(GNU_LIB)/u64.h \ 99U64_H = $(GNU_LIB)/u64.h \
97 $(NT_INC)/stdint.h 100 $(NT_INC)/stdint.h
98SHA512_H = $(GNU_LIB)/sha512.h \ 101SHA512_H = $(GNU_LIB)/sha512.h \
99 $(U64_H) \ 102 $(U64_H)
100 $(GNU_LIB)/u64.h
101 103
102$(BLD)/c-ctype.$(O) : \ 104$(BLD)/c-ctype.$(O) : \
103 $(GNU_LIB)/c-ctype.c \ 105 $(GNU_LIB)/c-ctype.c \
@@ -196,6 +198,19 @@ $(BLD)/sha512.$(O) : \
196 $(CONFIG_H) \ 198 $(CONFIG_H) \
197 $(SHA512_H) 199 $(SHA512_H)
198 200
201$(BLD)/stat-time.$(O) : \
202 $(GNU_LIB)/stat-time.h \
203 $(NT_INC)/sys/stat.h \
204 $(CONFIG_H)
205
206$(BLD)/timespec.$(O) : \
207 $(GNU_LIB)/timespec.h \
208 $(CONFIG_H)
209
210$(BLD)/u64.$(O) : \
211 $(U64_H) \
212 $(CONFIG_H)
213
199$(BLD)/filemode.$(O) : \ 214$(BLD)/filemode.$(O) : \
200 $(GNU_LIB)/filemode.c \ 215 $(GNU_LIB)/filemode.c \
201 $(CONFIG_H) \ 216 $(CONFIG_H) \