summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2012-08-25 08:55:32 +0300
committerEli Zaretskii <eliz@gnu.org>2012-08-25 08:55:32 +0300
commit391ceac53ab07bc081eecc5a5ab82a044d06edd1 (patch)
treeeee3b506c4f00e80a90ffd0219fce04e42af4a11 /lib
parent7d896ca9f363843d687fd7a9a04b1fb917a42aae (diff)
downloademacs-391ceac53ab07bc081eecc5a5ab82a044d06edd1.tar.gz
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-in8
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) \
$(BLD)/c-strncasecmp.$(O) \
$(BLD)/dtoastr.$(O) \
$(BLD)/dtotimespec.$(O) \
+ $(BLD)/execinfo.$(O) \
$(BLD)/getopt.$(O) \
$(BLD)/getopt1.$(O) \
$(BLD)/gettime.$(O) \
@@ -129,6 +130,9 @@ $(BLD)/dtotimespec.$(O) : \
$(GNU_LIB)/timespec.h \
$(CONFIG_H)
+$(BLD)/execinfo.$(O) : \
+ $(GNU_LIB)/execinfo.h
+
$(BLD)/getopt.$(O) : \
$(GNU_LIB)/getopt.c \
$(GNU_LIB)/getopt.h \
@@ -299,3 +303,7 @@ getopt_h:
< getopt.in.h > getopt_.h-t
$(CP) getopt_.h-t getopt_.h
- $(DEL) getopt_.h-t
+
+execinfo.h: execinfo.in.h
+ $(CP) execinfo.in.h $@
+