diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/makefile.w32-in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/makefile.w32-in b/lib/makefile.w32-in index 11251d55f77..7df68fd3300 100644 --- a/lib/makefile.w32-in +++ b/lib/makefile.w32-in | |||
| @@ -28,6 +28,7 @@ GNULIBOBJS = $(BLD)/c-ctype.$(O) \ | |||
| 28 | $(BLD)/c-strncasecmp.$(O) \ | 28 | $(BLD)/c-strncasecmp.$(O) \ |
| 29 | $(BLD)/dtoastr.$(O) \ | 29 | $(BLD)/dtoastr.$(O) \ |
| 30 | $(BLD)/dtotimespec.$(O) \ | 30 | $(BLD)/dtotimespec.$(O) \ |
| 31 | $(BLD)/execinfo.$(O) \ | ||
| 31 | $(BLD)/getopt.$(O) \ | 32 | $(BLD)/getopt.$(O) \ |
| 32 | $(BLD)/getopt1.$(O) \ | 33 | $(BLD)/getopt1.$(O) \ |
| 33 | $(BLD)/gettime.$(O) \ | 34 | $(BLD)/gettime.$(O) \ |
| @@ -129,6 +130,9 @@ $(BLD)/dtotimespec.$(O) : \ | |||
| 129 | $(GNU_LIB)/timespec.h \ | 130 | $(GNU_LIB)/timespec.h \ |
| 130 | $(CONFIG_H) | 131 | $(CONFIG_H) |
| 131 | 132 | ||
| 133 | $(BLD)/execinfo.$(O) : \ | ||
| 134 | $(GNU_LIB)/execinfo.h | ||
| 135 | |||
| 132 | $(BLD)/getopt.$(O) : \ | 136 | $(BLD)/getopt.$(O) : \ |
| 133 | $(GNU_LIB)/getopt.c \ | 137 | $(GNU_LIB)/getopt.c \ |
| 134 | $(GNU_LIB)/getopt.h \ | 138 | $(GNU_LIB)/getopt.h \ |
| @@ -299,3 +303,7 @@ getopt_h: | |||
| 299 | < getopt.in.h > getopt_.h-t | 303 | < getopt.in.h > getopt_.h-t |
| 300 | $(CP) getopt_.h-t getopt_.h | 304 | $(CP) getopt_.h-t getopt_.h |
| 301 | - $(DEL) getopt_.h-t | 305 | - $(DEL) getopt_.h-t |
| 306 | |||
| 307 | execinfo.h: execinfo.in.h | ||
| 308 | $(CP) execinfo.in.h $@ | ||
| 309 | |||