X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/d983a10b9a070fd8f6d4f48ec44e5514b62feaa6..7c8b0b3644ada886dfde4032fdf38687a5968089:/lib/makefile.w32-in diff --git a/lib/makefile.w32-in b/lib/makefile.w32-in index 348fe911a2..8424fd6458 100644 --- a/lib/makefile.w32-in +++ b/lib/makefile.w32-in @@ -1,5 +1,5 @@ -2# -*- Makefile -*- for GNU Emacs on the Microsoft Windows API. -# Copyright (C) 2011-2012 Free Software Foundation, Inc. +# -*- Makefile -*- for GNU Emacs on the Microsoft Windows API. +# Copyright (C) 2011-2015 Free Software Foundation, Inc. # This file is part of GNU Emacs. @@ -23,7 +23,8 @@ ALL = gnulib LOCAL_FLAGS = -I. -I../nt/inc -I../src LIBS = -GNULIBOBJS = $(BLD)/c-ctype.$(O) \ +GNULIBOBJS = $(BLD)/acl-errno-valid.$(O) \ + $(BLD)/c-ctype.$(O) \ $(BLD)/c-strcasecmp.$(O) \ $(BLD)/c-strncasecmp.$(O) \ $(BLD)/close-stream.$(O) \ @@ -34,6 +35,7 @@ GNULIBOBJS = $(BLD)/c-ctype.$(O) \ $(BLD)/getopt.$(O) \ $(BLD)/getopt1.$(O) \ $(BLD)/gettime.$(O) \ + $(BLD)/memrchr.$(O) \ $(BLD)/strftime.$(O) \ $(BLD)/time_r.$(O) \ $(BLD)/timespec-add.$(O) \ @@ -76,6 +78,9 @@ GNU_LIB = . SRC = $(EMACS_ROOT)/src NT_INC = $(EMACS_ROOT)/nt/inc +ACL_H = $(GNU_LIB)/acl.h \ + $(NT_INC)/sys/stat.h \ + $(NT_INC)/stdbool.h C_CTYPE_H = $(GNU_LIB)/c-ctype.h \ $(NT_INC)/stdbool.h MS_W32_H = $(NT_INC)/ms-w32.h \ @@ -103,9 +108,16 @@ 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 +$(BLD)/acl-errno-valid.$(O) : \ + $(GNU_LIB)/acl-errno-valid.c \ + $(ACL_H) \ + $(CONFIG_H) + $(BLD)/c-ctype.$(O) : \ $(GNU_LIB)/c-ctype.c \ $(CONFIG_H) \ @@ -199,6 +211,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 \ @@ -240,6 +256,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. #