declare smobs in alloc.c
[bpt/emacs.git] / lib / makefile.w32-in
index 67171e0..bf624e6 100644 (file)
@@ -1,5 +1,5 @@
 # -*- Makefile -*- for GNU Emacs on the Microsoft Windows API.
-# Copyright (C) 2011-2012 Free Software Foundation, Inc.
+# Copyright (C) 2011-2014 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) \
@@ -42,6 +44,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) \
@@ -75,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 \
@@ -102,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) \
@@ -198,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 \
@@ -239,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.
 #
@@ -322,4 +345,3 @@ getopt_h:
 
 execinfo.h: execinfo.in.h
        $(CP) execinfo.in.h $@
-