diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/makefile.w32-in | 19 |
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 \ | |||
| 96 | U64_H = $(GNU_LIB)/u64.h \ | 99 | U64_H = $(GNU_LIB)/u64.h \ |
| 97 | $(NT_INC)/stdint.h | 100 | $(NT_INC)/stdint.h |
| 98 | SHA512_H = $(GNU_LIB)/sha512.h \ | 101 | SHA512_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) \ |