summaryrefslogtreecommitdiff
path: root/lib/makefile.w32-in
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2011-04-06 16:16:43 +0200
committerJuanma Barranquero <lekktu@gmail.com>2011-04-06 16:16:43 +0200
commitf1f81baa2cc69ea0c0b13118d3559ddfb285305b (patch)
treee619f4ec596c6f5c80e0afd2bb3dc866b1584d4c /lib/makefile.w32-in
parent42b237655fd30f72a0784c2e0c3b86d28277e893 (diff)
downloademacs-f1f81baa2cc69ea0c0b13118d3559ddfb285305b.tar.gz
lib/makefile.w32-in: Adapt to changes in 2011-04-06T05:19:39Z!eggert@cs.ucla.edu.
* lib/makefile.w32-in (GNULIBOBJS): Add careadlinkat.$(O). ($(BLD)/careadlinkat.$(O)): New target. ($(BLD)/dtoastr.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O)) ($(BLD)/strftime.$(O), $(BLD)/time_r.$(O), $(BLD)/md5.$(O)): Update dependencies.
Diffstat (limited to 'lib/makefile.w32-in')
-rw-r--r--lib/makefile.w32-in24
1 files changed, 21 insertions, 3 deletions
diff --git a/lib/makefile.w32-in b/lib/makefile.w32-in
index 289f6bffdb9..895cd0b8369 100644
--- a/lib/makefile.w32-in
+++ b/lib/makefile.w32-in
@@ -29,7 +29,8 @@ GNULIBOBJS = $(BLD)/dtoastr.$(O) \
$(BLD)/strftime.$(O) \
$(BLD)/time_r.$(O) \
$(BLD)/md5.$(O) \
- $(BLD)/filemode.$(O)
+ $(BLD)/filemode.$(O) \
+ $(BLD)/careadlinkat.$(O)
#
# Build the library
@@ -60,6 +61,7 @@ $(BLD)/dtoastr.$(O) : \
$(SRC)/ftoastr.c \
$(SRC)/ftoastr.h \
$(SRC)/intprops.h \
+ $(EMACS_ROOT)/nt/inc/sys/stat.h \
$(EMACS_ROOT)/src/s/ms-w32.h \
$(EMACS_ROOT)/src/m/intel386.h \
$(EMACS_ROOT)/src/config.h
@@ -68,6 +70,9 @@ $(BLD)/getopt.$(O) : \
$(SRC)/getopt.c \
$(SRC)/getopt.h \
$(SRC)/getopt_int.h \
+ $(SRC)/gettext.h \
+ $(EMACS_ROOT)/nt/inc/unistd.h \
+ $(EMACS_ROOT)/nt/inc/sys/stat.h \
$(EMACS_ROOT)/src/s/ms-w32.h \
$(EMACS_ROOT)/src/m/intel386.h \
$(EMACS_ROOT)/src/config.h
@@ -76,6 +81,7 @@ $(BLD)/getopt1.$(O) : \
$(SRC)/getopt1.c \
$(SRC)/getopt.h \
$(SRC)/getopt_int.h \
+ $(EMACS_ROOT)/nt/inc/sys/stat.h \
$(EMACS_ROOT)/src/s/ms-w32.h \
$(EMACS_ROOT)/src/m/intel386.h \
$(EMACS_ROOT)/src/config.h
@@ -84,13 +90,14 @@ $(BLD)/strftime.$(O) : \
$(SRC)/strftime.c \
$(SRC)/strftime.h \
$(EMACS_ROOT)/nt/inc/stdbool.h \
+ $(EMACS_ROOT)/nt/inc/sys/stat.h \
$(EMACS_ROOT)/src/s/ms-w32.h \
$(EMACS_ROOT)/src/m/intel386.h \
$(EMACS_ROOT)/src/config.h
$(BLD)/time_r.$(O) : \
$(SRC)/time_r.c \
- $(EMACS_ROOT)/nt/inc/stdbool.h \
+ $(EMACS_ROOT)/nt/inc/sys/stat.h \
$(EMACS_ROOT)/src/s/ms-w32.h \
$(EMACS_ROOT)/src/m/intel386.h \
$(EMACS_ROOT)/src/config.h
@@ -99,6 +106,7 @@ $(BLD)/md5.$(O) : \
$(SRC)/md5.c \
$(SRC)/md5.h \
$(EMACS_ROOT)/nt/inc/stdint.h \
+ $(EMACS_ROOT)/nt/inc/sys/stat.h \
$(EMACS_ROOT)/src/s/ms-w32.h \
$(EMACS_ROOT)/src/m/intel386.h \
$(EMACS_ROOT)/src/config.h
@@ -111,12 +119,22 @@ $(BLD)/filemode.$(O) : \
$(EMACS_ROOT)/src/m/intel386.h \
$(EMACS_ROOT)/src/config.h
+$(BLD)/careadlinkat.$(O) : \
+ $(SRC)/careadlinkat.c \
+ $(SRC)/careadlinkat.h \
+ $(SRC)/allocator.h \
+ $(EMACS_ROOT)/nt/inc/unistd.h \
+ $(EMACS_ROOT)/nt/inc/sys/stat.h \
+ $(EMACS_ROOT)/src/s/ms-w32.h \
+ $(EMACS_ROOT)/src/m/intel386.h \
+ $(EMACS_ROOT)/src/config.h
+
# The following dependencies are for supporting parallel builds, where
# we must make sure $(BLD) exists before any compilation starts.
#
$(BLD)/dtoastr.$(O) $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O): stamp_BLD
$(BLD)/strftime.$(O) $(BLD)/time_r.$(O) $(BLD)/md5.$(O): stamp_BLD
-$(BLD)/filemode.$(O): stamp_BLD
+$(BLD)/filemode.$(O) $(BLD)/careadlinkat.$(O): stamp_BLD
#
# Headers we would preprocess if we could.