diff options
| author | Eli Zaretskii | 2012-08-25 08:55:32 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2012-08-25 08:55:32 +0300 |
| commit | 391ceac53ab07bc081eecc5a5ab82a044d06edd1 (patch) | |
| tree | eee3b506c4f00e80a90ffd0219fce04e42af4a11 /lib | |
| parent | 7d896ca9f363843d687fd7a9a04b1fb917a42aae (diff) | |
| download | emacs-391ceac53ab07bc081eecc5a5ab82a044d06edd1.tar.gz emacs-391ceac53ab07bc081eecc5a5ab82a044d06edd1.zip | |
MS-Windows adaptations for 2012-08-25T04:04:08Z!eggert@cs.ucla.edu and 2012-08-25T04:27:32Z!eggert@cs.ucla.edu.
lib/makefile.w32-in ($(BLD)/execinfo.$(O), execinfo.h): New targets.
(GNULIBOBJS): Add $(BLD)/execinfo.$(O).
src/makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
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 | |||