diff options
| author | Paul Eggert | 2011-02-21 15:46:32 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-02-21 15:46:32 -0800 |
| commit | 9441f0e4fca691e4d2a2c7842373de8f29414b17 (patch) | |
| tree | 6db82cf30a48bd72485db5c4cc2f19d4a142f727 /lib | |
| parent | ba01e9d785457898d873d6c8ec8bc1965fe4ff28 (diff) | |
| parent | e84efb7078b7251b8c8bf15f71fed653cfa535a5 (diff) | |
| download | emacs-9441f0e4fca691e4d2a2c7842373de8f29414b17.tar.gz emacs-9441f0e4fca691e4d2a2c7842373de8f29414b17.zip | |
Merge from mainline.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/makefile.w32-in | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/lib/makefile.w32-in b/lib/makefile.w32-in index 02953c9863a..289f6bffdb9 100644 --- a/lib/makefile.w32-in +++ b/lib/makefile.w32-in | |||
| @@ -28,7 +28,8 @@ GNULIBOBJS = $(BLD)/dtoastr.$(O) \ | |||
| 28 | $(BLD)/getopt1.$(O) \ | 28 | $(BLD)/getopt1.$(O) \ |
| 29 | $(BLD)/strftime.$(O) \ | 29 | $(BLD)/strftime.$(O) \ |
| 30 | $(BLD)/time_r.$(O) \ | 30 | $(BLD)/time_r.$(O) \ |
| 31 | $(BLD)/md5.$(O) | 31 | $(BLD)/md5.$(O) \ |
| 32 | $(BLD)/filemode.$(O) | ||
| 32 | 33 | ||
| 33 | # | 34 | # |
| 34 | # Build the library | 35 | # Build the library |
| @@ -95,17 +96,27 @@ $(BLD)/time_r.$(O) : \ | |||
| 95 | $(EMACS_ROOT)/src/config.h | 96 | $(EMACS_ROOT)/src/config.h |
| 96 | 97 | ||
| 97 | $(BLD)/md5.$(O) : \ | 98 | $(BLD)/md5.$(O) : \ |
| 98 | $(EMACS_ROOT)/lib/md5.c \ | 99 | $(SRC)/md5.c \ |
| 100 | $(SRC)/md5.h \ | ||
| 101 | $(EMACS_ROOT)/nt/inc/stdint.h \ | ||
| 99 | $(EMACS_ROOT)/src/s/ms-w32.h \ | 102 | $(EMACS_ROOT)/src/s/ms-w32.h \ |
| 100 | $(EMACS_ROOT)/src/m/intel386.h \ | 103 | $(EMACS_ROOT)/src/m/intel386.h \ |
| 101 | $(EMACS_ROOT)/src/config.h \ | 104 | $(EMACS_ROOT)/src/config.h |
| 102 | $(EMACS_ROOT)/lib/md5.h | 105 | |
| 106 | $(BLD)/filemode.$(O) : \ | ||
| 107 | $(SRC)/filemode.c \ | ||
| 108 | $(SRC)/filemode.h \ | ||
| 109 | $(EMACS_ROOT)/nt/inc/sys/stat.h \ | ||
| 110 | $(EMACS_ROOT)/src/s/ms-w32.h \ | ||
| 111 | $(EMACS_ROOT)/src/m/intel386.h \ | ||
| 112 | $(EMACS_ROOT)/src/config.h | ||
| 103 | 113 | ||
| 104 | # The following dependencies are for supporting parallel builds, where | 114 | # The following dependencies are for supporting parallel builds, where |
| 105 | # we must make sure $(BLD) exists before any compilation starts. | 115 | # we must make sure $(BLD) exists before any compilation starts. |
| 106 | # | 116 | # |
| 107 | $(BLD)/dtoastr.$(O) $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O): stamp_BLD | 117 | $(BLD)/dtoastr.$(O) $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O): stamp_BLD |
| 108 | $(BLD)/strftime.$(O) $(BLD)/time_r.$(O) $(BLD)/md5.$(O): stamp_BLD | 118 | $(BLD)/strftime.$(O) $(BLD)/time_r.$(O) $(BLD)/md5.$(O): stamp_BLD |
| 119 | $(BLD)/filemode.$(O): stamp_BLD | ||
| 109 | 120 | ||
| 110 | # | 121 | # |
| 111 | # Headers we would preprocess if we could. | 122 | # Headers we would preprocess if we could. |