X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/e8757f091a502b858912a4c267210e009227d6e6..1abfd3e85fa9b340699430cd9e15dd9f0073bdbe:/lib/makefile.w32-in?ds=sidebyside diff --git a/lib/makefile.w32-in b/lib/makefile.w32-in index f0cea56f82..cd62fbcd13 100644 --- a/lib/makefile.w32-in +++ b/lib/makefile.w32-in @@ -1,5 +1,5 @@ # -*- Makefile -*- for GNU Emacs on the Microsoft Windows API. -# Copyright (C) 2011-2012 Free Software Foundation, Inc. +# Copyright (C) 2011-2013 Free Software Foundation, Inc. # This file is part of GNU Emacs. @@ -26,12 +26,15 @@ LIBS = GNULIBOBJS = $(BLD)/c-ctype.$(O) \ $(BLD)/c-strcasecmp.$(O) \ $(BLD)/c-strncasecmp.$(O) \ + $(BLD)/close-stream.$(O) \ $(BLD)/dtoastr.$(O) \ $(BLD)/dtotimespec.$(O) \ $(BLD)/execinfo.$(O) \ + $(BLD)/fpending.$(O) \ $(BLD)/getopt.$(O) \ $(BLD)/getopt1.$(O) \ $(BLD)/gettime.$(O) \ + $(BLD)/memrchr.$(O) \ $(BLD)/strftime.$(O) \ $(BLD)/time_r.$(O) \ $(BLD)/timespec-add.$(O) \ @@ -40,6 +43,7 @@ GNULIBOBJS = $(BLD)/c-ctype.$(O) \ $(BLD)/sha1.$(O) \ $(BLD)/sha256.$(O) \ $(BLD)/sha512.$(O) \ + $(BLD)/sig2str.$(O) \ $(BLD)/stat-time.$(O) \ $(BLD)/timespec.$(O) \ $(BLD)/u64.$(O) \ @@ -100,6 +104,8 @@ U64_H = $(GNU_LIB)/u64.h \ $(NT_INC)/stdint.h SHA512_H = $(GNU_LIB)/sha512.h \ $(U64_H) +SIG2STR_H = $(GNU_LIB)/sig2str.h \ + $(GNU_LIB)/intprops.h STAT_TIME_H = $(GNU_LIB)/stat-time.h \ $(NT_INC)/sys/stat.h @@ -120,6 +126,13 @@ $(BLD)/c-strncasecmp.$(O) : \ $(CONFIG_H) \ $(C_CTYPE_H) +$(BLD)/close-stream.$(O) : \ + $(GNU_LIB)/close-stream.c \ + $(GNU_LIB)/close-stream.h \ + $(GNU_LIB)/fpending.h \ + $(NT_INC)/stdbool.h \ + $(CONFIG_H) + $(BLD)/dtoastr.$(O) : \ $(GNU_LIB)/dtoastr.c \ $(FTOASTR_C) @@ -135,6 +148,11 @@ $(BLD)/execinfo.$(O) : \ $(GNU_LIB)/execinfo.h \ $(CONFIG_H) +$(BLD)/fpending.$(O) : \ + $(GNU_LIB)/fpending.c \ + $(GNU_LIB)/fpending.h \ + $(CONFIG_H) + $(BLD)/getopt.$(O) : \ $(GNU_LIB)/getopt.c \ $(GNU_LIB)/getopt.h \ @@ -184,6 +202,10 @@ $(BLD)/md5.$(O) : \ $(CONFIG_H) \ $(MD5_H) +$(BLD)/memrchr.$(O) : \ + $(GNU_LIB)/memrchr.c \ + $(CONFIG_H) + $(BLD)/sha1.$(O) : \ $(GNU_LIB)/sha1.c \ $(NT_INC)/stdalign.h \ @@ -225,6 +247,12 @@ $(BLD)/filemode.$(O) : \ $(CONFIG_H) \ $(FILEMODE_H) +$(BLD)/sig2str.$(O) : \ + $(GNU_LIB)/sig2str.c \ + $(CONFIG_H) \ + $(SIG2STR_H) + + # The following dependencies are for supporting parallel builds, where # we must make sure $(BLD) exists before any compilation starts. # @@ -308,4 +336,3 @@ getopt_h: execinfo.h: execinfo.in.h $(CP) execinfo.in.h $@ -